* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #666;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  /* text-align: justify; */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(970px, calc(100% - 34px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 8px 12px;
  background: #fff;
  color: #111;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  min-height: 25px;
  background: #31a8e9;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 25px;
  gap: 16px;
  padding: 7px 0;
}

.topbar p {
  margin: 0;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  line-height: 1.2;
  width: 100%;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #0a0ac7;
  color: #fff;
  padding-top: 12px;
  padding-bottom: 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
}

.brand img {
  height: 94px;
  width: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle strong {
  margin-left: 5px;
  font-size: 12px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.menu li {
  position: relative;
}

.menu > .has-submenu {
  display: flex;
  align-items: center;
}

.menu a,
.menu button {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 31px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
}

.menu .submenu-toggle {
  min-width: 18px;
  padding: 0 10px 0 0;
}

.menu > .split-submenu > a {
  padding-right: 5px;
}

.menu > .split-submenu > .submenu-toggle {
  padding-right: 12px;
}

.menu a.active,
.menu .active,
.footer-nav .active {
  color: #ffdc00;
}

.has-submenu > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #0a0ac7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.menu > .has-submenu > .submenu {
  left: 0;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.submenu a,
.submenu button {
  width: 100%;
  justify-content: space-between;
  min-height: 34px;
  padding: 8px 14px;
  text-align: left;
}

.submenu a:hover,
.submenu button:hover,
.menu > li > a:hover,
.menu > li > button:hover {
  color: #ffdc00;
}

.has-submenu:hover > .submenu,
.has-submenu.is-open > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 33vw, 650px);
  min-height: 300px;
  background: #111;
}

.slides,
.slide {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slide.is-active {
  opacity: 1;
}

.text-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  padding: 24px;
}

.text-slide h1 {
  max-width: 795px;
  margin: 0;
  border-radius: 2px;
  background: rgba(102, 102, 102, 0.59);
  color: #fff;
  padding: 26px 40px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 72px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
}

.slider-btn.prev {
  left: 22px;
}

.slider-btn.next {
  right: 22px;
}

.about-page {
  background: #fff;
}

.about-hero {
  height: 250px;
  overflow: hidden;
  background: #d5ad8f;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-content {
  width: min(1000px, calc(100% - 34px));
  padding: 62px 0 80px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.about-content h1 {
  margin: 0 0 32px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.about-content p {
  margin: 0 0 16px;
}

.page-hero {
  position: relative;
  height: 140px;
  overflow: hidden;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 0 20px;

  /* Background Image */
  background: url("images/header-history3.jpg") center center / cover no-repeat;
}

/* Overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Change opacity as needed */
  z-index: 1;
}

/* Content above overlay */
.page-hero > * {
  position: relative;
  z-index: 2;
  color: #fff;
}
.about-hero {
  height: 250px;
  overflow: hidden;
  background: #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-hero img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero.hero-image img {
  display: block;
}

.about-hero.hero-image img {
  display: block;
}

.about-hero.about-image img {
  display: block;
}

.page-hero .breadcrumb {
  display: contents;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  /* text-transform: capitalize; */
  font-size: 14px;
  font-weight: 600;
}

.page-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero .breadcrumb span,
.page-hero .breadcrumb a {
  white-space: nowrap;
}

.page-hero .breadcrumb-sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.85);
}

.page-content {
  width: min(1000px, calc(100% - 34px));
  padding: 24px 0 31px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.page-content h1,
.page-content .entry-title {
  margin: 0 0 24px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  }

.page-content h2,
.page-content h3 {
  margin: 24px 0 12px;
  color: #333;
  line-height: 1.35;
}

.page-content p {
  margin: 0 0 16px;
}

.page-content ul,
.page-content ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.page-content a {
  color: inherit;
}

.page-content img {
  height: auto;
  margin: 0 0 18px;
}

.page-content .et_pb_section,
.page-content .et_pb_row,
.page-content .et_pb_column,
.page-content .et_pb_module,
.page-content .et_pb_text_inner {
  max-width: 100%;
}

.page-content .et_pb_row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.page-content .et_pb_column {
  width: 100%;
}

.page-content .et_pb_row > .et_pb_column_4_4,
.page-content .et_pb_row > .et_pb_column:first-child:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .page-content .et_pb_row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-content .et_pb_row > .et_pb_column_3_4 {
    grid-column: span 9;
  }

  .page-content .et_pb_row > .et_pb_column_1_4 {
    grid-column: span 3;
  }

  .page-content .et_pb_row > .et_pb_column_1_2 {
    grid-column: span 6;
  }

  .page-content .et_pb_row > .et_pb_column_1_3 {
    grid-column: span 4;
  }
}

.page-content .et_pb_post_title .entry-title,
.page-content .et_pb_title_container h1 {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.1;
}

.page-content .et_pb_text_inner p {
  margin: 0 0 18px;
}

.page-content .et_pb_image_wrap,
.page-content .et_pb_image {
  width: 100%;
}

.page-content .et_pb_image_wrap img,
.page-content .et_pb_image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Increase default thumbnail size for two-column history rows */
.page-content .et_pb_row_1 .et_pb_image_wrap img {
  /*max-width: 420px;*/
}

.page-content .et_pb_text {
  color: inherit;
}

.page-content .et_pb_text_inner {
  color: inherit;
}

/* No-results box styling for Activities sliders */
.et_pb_no_results .entry {
  background: #2f9ee0;
  color: #fff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(47,158,224,0.12);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.et_pb_no_results .entry h1 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.et_pb_no_results .entry p {
  margin: 0;
  color: rgba(255,255,255,0.95);
}

.page-content .et_pb_bg_layout_dark {
  margin: 0px 0 22px;
  background: linear-gradient(90deg, #2f94dd 0%, #75b5e6 42%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
}

.page-content .et_pb_bg_layout_dark h2,
.page-content .et_pb_bg_layout_dark h3,
.page-content .et_pb_bg_layout_dark h4 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  padding: 3px 10px 6px;
}

.page-content .et_pb_divider {
  grid-column: 1 / -1;
  border-top: 1px solid #ddd;
  margin: 28px 0 16px;
  min-height: 1px;
}

.page-content .et_pb_fullwidth_image img,
.page-content .et_pb_image img {
  width: auto;
  max-width: 100%;
}

.presidents-content .et_pb_row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  align-items: start;
  gap: 34px 44px;
}

.presidents-content .et_pb_row_1,
.presidents-content .et_pb_column_empty {
  grid-column: 1 / -1;
}

.presidents-content .et_pb_column {
  width: 100%;
  text-align: center;
}

.presidents-content .et_pb_image_wrap,
.presidents-content .et_pb_image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.presidents-content .et_pb_image img {
  width: 181px;
  max-width: 100%;
  margin-bottom: 12px;
}

.presidents-content h3,
.presidents-content h4 {
  text-align: center;
}

.presidents-content h4 {
  margin: 0 0 18px;
  color: #333;
  font-size: 15px;
  line-height: 1.45;
}

.page-content .wpdm_icon {
  width: 42px;
  margin: 0 12px 0 0;
}

.page-content .card,
.page-content .link-template-default,
.page-content .card {
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.page-content .link-template-default .card-body,
.page-content .card .card-body {
  padding: 0;
}

.page-content .media {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-content .img-48 {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: #fff5f5; */
  border-radius: 6px;
  flex: 0 0 64px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

.page-content .wpdm_icon {
  width: 36px;
  height: auto;
}

.page-content .media-body {
  min-width: 0;
}

.page-content .package-title {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: #2b2b2b;
}

.page-content .package-title a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
    font-size: 17px;
}
.page-content .text-muted.text-small {
  color: #9aa3ad;
  font-size: 13px;
}

.page-content .ml-3 {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.page-content .wpdm-download-link,
.page-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #2f80ed;
  background: #2f80ed;
  color: #fff;
  font-weight: 600;
}

.page-content .wpdm-download-link:hover {
  background: #246bd1;
  border-color: #246bd1;
}

@media (max-width: 768px) {
  .page-content .img-48 { width:48px; height:48px; flex: 0 0 48px; }
  .page-content .package-title { font-size: 18px; }
  .page-content .ml-3 { margin-left: 12px; }
}

.page-content .btn,
.page-content .wpdm-download-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid #0c71c3;
  background: #0c71c3;
  color: #fff;
}

.vision-section {
  background: #0a40ad;
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
  padding: 40px 0 34px;
}

.vision-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.round-icon {
  align-self: center;
  width: 78px;
  height: 78px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: #e09591;
  position: relative;
}

.document-icon::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 19px;
  width: 22px;
  height: 28px;
  border: 3px solid #fff;
}

.document-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 11px 11px 0 -7px #e09591, 11px 11px 0 -4px #fff;
}

.target-icon::before,
.target-icon::after {
  content: "";
  position: absolute;
  border: 4px solid #fff;
  border-radius: 50%;
}

.target-icon::before {
  inset: 19px;
}

.target-icon::after {
  inset: 29px;
}

.vision-card h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.vision-card p {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.7;
}

.widgets-section {
  background: #fff;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 45px 0 26px;
}

.widget-title {
  margin: 0 0 24px;
  padding: 6px 10px 7px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.widget-title.blue {
  background: #0c71c3;
}

.widget-title.purple {
  background: #9120e8;
}

.widget-title.green {
  background: #22b7ab;
}

.result-box {
  min-height: 145px;
  padding: 28px 22px;
  background: #2ea3f2;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.result-box h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.result-box p {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.55;
}

.regions-slider {
  position: relative;
  min-height: 181px;
  overflow: hidden;
  background: #2ea3f2;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.region-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  background-color: #2ea3f2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  opacity: 0;
  text-align: right;
  transition: opacity 0.35s ease;
}

.region-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.region-slide span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0.08em 0.08em 0 rgba(0, 0, 0, 0.4);
}

.message-section {
  background: #eee;
  padding: 23px 0 32px;
}

.section-heading {
  margin: 0 0 28px;
  color: #333;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.7;
}

.message-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.message-copy p,
.president-note p {
  margin: 0 0 16px;
}

.read-more,
.quick-form button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2ea3f2;
  background: #fff;
  color: #2ea3f2;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
}

.read-more,
.quick-form button {
  position: relative;
  overflow: hidden;
  padding-right: 18px;
  transition: padding-right 0.2s ease, background-color 0.2s ease;
  background-color: #eee;
}

.read-more::after,
.quick-form button::after {
  content: "\203A";
  width: 0;
  opacity: 0;
  transform: translateX(-6px);
  color: currentColor;
  font-size: 28px;
  line-height: 0.8;
  margin-top: -7px;
  transition: width 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.read-more:hover,
.read-more:focus-visible,
.quick-form button:hover,
.quick-form button:focus-visible {
  padding-right: 14px;
  background-color: #eee;
}

.read-more:hover::after,
.read-more:focus-visible::after,
.quick-form button:hover::after,
.quick-form button:focus-visible::after {
  width: 20px;
  opacity: 1;
  transform: translateX(7px);
}

.president-note {
  padding-top: 32px;
  text-align: center;
}

.president-note img {
  width: min(100%, 240px);
  margin: 0 auto 24px;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
}

.president-note p:last-child {
  text-align: center;
}

.president-note a {
  color: #2ea3f2;
}

.contact-section {
  background: #fff;
  padding: 20px 0 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 350px;
}

.map-frame iframe {
  border: 0;
}

.quick-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 0;
  background: #eee;
  color: #666;
  padding: 11px 14px;
  outline: none;
}

.quick-form textarea {
  height: 120px;
  resize: vertical;
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.captcha-row input {
  width: 42px;
  height: 45px;
  padding: 6px;
}

.site-footer {
  background: #0505b6ab;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 70px;
  padding: 48px 0;
  font-size: 13px;
  line-height: 1.9;
}

.footer-grid h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  position: relative;
  padding-left: 16px;
}

.footer-grid li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffdc00;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-grid li a:hover {
  color: #ffdc00;
}

.footer-grid p {
  margin: 0;
}

.footer-nav {
  background: #0505b6eb;
}

.footer-nav .wrap {
  display: flex;
  align-items: center;
  min-height: 42px;
  gap: 26px;
  overflow-x: auto;
  font-size: 13px;
  font-weight: normal;
}

.copyright {
  background: #090986;
  font-size: 12px;
  font-weight: 700;
}

.copyright .wrap {
  padding: 14px 0;
  font-size: 13px;
  font-weight: normal;
}

.back-to-top {
  position: fixed;
  right: 2px;
  bottom: 28px;
  z-index: 100;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 3px 3px 0 0;
  background: #050579;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 28px, 970px);
  }

  .topbar-inner {

/* Presidents page: row_2 = three across, row_3 = two centered */
.page-content .et_pb_row_2,
.page-content .et_pb_row_3 {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.page-content .et_pb_row_2 > .et_pb_column {
  flex: 0 0 calc((100% - 56px) / 3);
  max-width: calc((100% - 56px) / 3);
  display: flex;
  justify-content: center;
}
.page-content .et_pb_row_3 > .et_pb_column {
  flex: 0 0 calc((100% - 28px) / 2);
  max-width: calc((100% - 28px) / 2);
  display: flex;
  justify-content: center;
}
.page-content .et_pb_row_3 > .et_pb_column.et_pb_column_empty {
  display: none;
}

@media (max-width: 900px) {
  .page-content .et_pb_row_2 > .et_pb_column,
  .page-content .et_pb_row_3 > .et_pb_column {
    flex: 0 0 calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 520px) {
  .page-content .et_pb_row_2 > .et_pb_column,
  .page-content .et_pb_row_3 > .et_pb_column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-content .et_pb_row_3 > .et_pb_column.et_pb_column_empty { display: none; }
}

/* Stronger overrides for pages that don't use .page-content wrapper */
.et_pb_row_2,
.et_pb_row_3 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}
.et_pb_row_2 > .et_pb_column {
  width: auto !important;
  flex: 0 0 calc((100% - 56px) / 3) !important;
  max-width: calc((100% - 56px) / 3) !important;
  display: flex !important;
  justify-content: center;
}
.et_pb_row_3 > .et_pb_column {
  width: auto !important;
  flex: 0 0 calc((100% - 28px) / 2) !important;
  max-width: calc((100% - 28px) / 2) !important;
  display: flex !important;
  justify-content: center;
}
.et_pb_row_3 > .et_pb_column.et_pb_column_empty {
  display: none !important;
}

@media (max-width: 900px) {
  .et_pb_row_2 > .et_pb_column,
  .et_pb_row_3 > .et_pb_column {
    flex: 0 0 calc((100% - 28px) / 2) !important;
    max-width: calc((100% - 28px) / 2) !important;
  }
}

@media (max-width: 520px) {
  .et_pb_row_2 > .et_pb_column,
  .et_pb_row_3 > .et_pb_column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Coordinator / contact pages: left image (1/4) and right details (1/2) */
.et_pb_row_1 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
}
.et_pb_row_1 > .et_pb_column_1_4 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  display: flex !important;
  justify-content: center;
}
.et_pb_row_1 > .et_pb_column_1_2 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
.et_pb_row_1 > .et_pb_column.et_pb_column_empty {
  display: none !important;
}

/* Ensure image fits its column */
.et_pb_row_1 .et_pb_image_wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .et_pb_row_1 > .et_pb_column_1_4,
  .et_pb_row_1 > .et_pb_column_1_2 {
    flex: 0 0 calc((100% - 28px) / 2) !important;
    max-width: calc((100% - 28px) / 2) !important;
  }
}

@media (max-width: 520px) {
  .et_pb_row_1 > .et_pb_column_1_4,
  .et_pb_row_1 > .et_pb_column_1_2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
    align-items: flex-end;
    flex-direction: column;
    padding: 5px 0;
    gap: 4px;
  }

  .top-contact {
    justify-content: flex-end;
    gap: 8px 16px;
  }

  .brand-row {
    justify-content: space-between;
    min-height: 76px;
    padding-right: 0;
  }

  .brand img {
    height: 76px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 54px auto;
    grid-template-rows: repeat(3, 2px);
    align-content: center;
    align-items: center;
    column-gap: 10px;
    row-gap: 7px;
    min-height: 48px;
    min-width: 150px;
    justify-content: center;
    margin-left: auto;
    margin-right: -10px;
  }

  .menu-toggle span {
    grid-column: 1;
    width: 34px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .menu-toggle strong {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-left: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    padding-bottom: 10px;
  }

  .main-nav.is-open {
    display: block;
  }

  .menu {
    display: block;
    min-height: 0;
    font-size: 13px;
  }

  .menu > .has-submenu {
    display: block;
  }

  .menu > .split-submenu {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: stretch;
  }

  .menu a,
  .menu button {
    width: 100%;
    min-height: 40px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 0;
  }

  .menu .submenu-toggle {
    min-width: 42px;
    justify-content: center;
    padding: 8px 0;
  }

  .has-submenu > button::after {
    flex: 0 0 auto;
    margin-left: auto;
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 6px;
  }

  .split-submenu > .submenu-toggle::after {
    margin-left: 0;
  }

  .submenu,
  .submenu .submenu {
    grid-column: 1 / -1;
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 18px;
    background: rgba(0, 0, 0, 0.12);
    box-shadow: none;
  }

  .has-submenu:hover > .submenu {
    display: none;
  }

  .has-submenu:focus-within > .submenu {
    display: none;
  }

  .has-submenu.is-open > .submenu {
    display: block;
  }

  .hero-slider {
    height: clamp(270px, 33vw, 300px);
    min-height: 270px;
  }

  .about-hero {
    height: 220px;
  }

  .about-content {
    padding: 44px 0 58px;
  }

  .presidents-content .et_pb_row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .widget-grid,
  .message-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 34px;
    padding: 34px 0;
  }

  .widget-grid,
  .footer-grid {
    gap: 28px;
  }

  .vision-card {
    align-items: center;
    text-align: left;
  }

  .president-note {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  .topbar {
    font-size: 18px;
    display: none;
  }

  .topbar-inner {
    align-items: center;
    padding: 7px 0;
  }

  .top-contact {
    justify-content: center;
    gap: 8px 22px;
    line-height: 1.25;
  }

  .contact-item {
    gap: 7px;
  }

  .contact-item.mail {
    flex-basis: 100%;
    justify-content: center;
  }

  .contact-icon {
    width: 19px;
    height: 19px;
  }

  .site-header {
    padding: 9px 0 0;
  }

  .brand-row {
    min-height: 84px;
    gap: 8px;
  }

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

  .brand img {
    width: min(100%, 250px);
    height: auto;
    max-height: 84px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-height: 48px;
    min-width: 150px;
    padding: 8px 11px;
  }

  .menu-toggle span {
    width: 34px;
    height: 2px;
  }

  .menu-toggle strong {
    font-size: 14px;
  }

  .main-nav.is-open {
    padding: 8px 0 12px;
  }

  .menu a,
  .menu button {
    min-height: 42px;
    padding: 9px 0;
    font-size: 14px;
  }

  .hero-slider {
    height: clamp(230px, 52vw, 270px);
    min-height: 230px;
  }

  .about-hero {
    height: 190px;
  }

  .about-hero img {
    object-position: center top;
  }

  .about-content {
    padding: 34px 0 44px;
    font-size: 14px;
  }

  .about-content h1 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .page-content .et_pb_bg_layout_dark {
    margin: 26px 0 22px;
  }

  .page-content .et_pb_bg_layout_dark h2,
  .page-content .et_pb_bg_layout_dark h3,
  .page-content .et_pb_bg_layout_dark h4 {
    font-size: 24px;
    padding: 4px 9px 6px;
  }

  .presidents-content .et_pb_row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .presidents-content .et_pb_image img {
    margin-bottom: 10px;
  }

  .slide {
    object-position: center top;
  }

  .text-slide h1 {
    max-width: calc(100% - 72px);
    padding: 14px 16px 16px;
    font-size: clamp(20px, 6.5vw, 28px);
    line-height: 1.12;
  }

  .slider-btn {
    width: 30px;
    height: 52px;
    font-size: 38px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .two-col {
    gap: 28px;
    padding: 40px 0 34px;
  }

  .round-icon {
    width: 98px;
    height: 98px;
    margin-bottom: 20px;
  }

  .document-icon::before {
    left: 28px;
    top: 24px;
    width: 28px;
    height: 36px;
  }

  .document-icon::after {
    right: 25px;
    bottom: 23px;
    width: 21px;
    height: 21px;
  }

  .target-icon::before {
    inset: 23px;
  }

  .target-icon::after {
    inset: 35px;
  }

  .vision-card {
    align-items: center;
  }

  .vision-card h2 {
    margin-bottom: 8px;
    font-size: 20px;
    text-align: center;
  }

  .vision-card p {
    font-size: 16px;
    line-height: 1.75;
  }

  .widget-grid {
    gap: 28px;
    padding: 30px 0 28px;
  }

  .widget-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .result-box {
    min-height: 0;
    padding: 22px 18px;
  }

  .result-box h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .regions-slider {
    min-height: 210px;
  }

  .region-slide {
    padding: 14px;
  }

  .region-slide span {
    font-size: 17px;
  }

  .message-section {
    padding: 28px 0;
  }

  .section-heading {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.35;
  }

  .message-grid,
  .contact-grid {
    gap: 24px;
  }

  .message-copy p,
  .president-note p {
    margin-bottom: 14px;
  }

  .president-note {
    text-align: center;
  }

  .president-note img {
    margin-left: auto;
  }

  .contact-section {
    padding: 28px 0 34px;
  }

  .map-frame,
  .map-frame iframe {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .captcha-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .quick-form button {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
    padding: 34px 0;
    font-size: 14px;
  }

  .footer-grid h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-grid li {
    padding-left: 18px;
  }

  .footer-grid li::before {
    font-size: 20px;
  }

  .footer-nav .wrap {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 10px 0;
    overflow-x: visible;
    line-height: 1.4;
  }

  .copyright .wrap {
    padding: 12px 0;
    text-align: center;
  }

  .back-to-top {
    right: 2px;
    bottom: 16px;
  }
}

@media (max-width: 380px) {
  .topbar {
    font-size: 16px;
  }

  .top-contact {
    gap: 7px 14px;
  }

  .brand-row {
    min-height: 74px;
  }

  .menu-toggle {
    min-height: 42px;
    min-width: 128px;
    grid-template-columns: 42px auto;
    column-gap: 8px;
    padding: 7px 9px;
    margin-right: -54px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .menu-toggle strong {
    font-size: 12px;
  }

  .hero-slider {
    height: clamp(220px, 70vw, 240px);
    min-height: 220px;
  }

  .text-slide h1 {
    max-width: calc(100% - 58px);
    padding: 12px 14px 14px;
    font-size: clamp(19px, 6.2vw, 22px);
  }

  .slider-btn {
    width: 26px;
    height: 48px;
    font-size: 34px;
  }

  .about-hero {
    height: 165px;
  }

  .vision-card p {
    font-size: 15px;
  }
}


/* Custom Styles */

.slider-three {
  font-size: clamp(24px, 4vw, 40px);
  opacity: 0;
  transform: translateY(50px);
  animation: riseUp 1s ease-out 0.3s forwards;
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(50px); /* start below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* end at normal position */
  }
}
.gallery-slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slide span {
    background: rgb(0 0 0 / 25%);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.cme-section {
    padding: 70px 0;
    background: #fff;
}

.cme-section .container {
    max-width: 1140px;
    margin: auto;
}

.page-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
    font-weight: 600;
}

.cme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.cme-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    background: #fff;
    transition: .3s;
    min-height: 320px;
}

.cme-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-5px);
}

.cme-card h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 400;
}
.cme-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cme-card a {
    color: #2f7cf6;
    text-decoration: none;
    font-weight: normal;
}

.cme-card a:hover {
    text-decoration: underline;
}

@media (max-width:991px){
    .cme-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:767px){
    .cme-grid{
        grid-template-columns:1fr;
    }

    .page-title{
        font-size:30px;
    }
}
.event-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.event-card img{
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Text Overlay */
.event-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 25%);
    padding: 18px 20px;
    text-align: center;
}

.event-overlay h3{
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.image-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-card h3 {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f3b8f;
}
.breadcrumb{
  display: none;
}
.hero-content{
  text-align: center;
  margin-top: 30px;
}
.hero-content h1{
  margin-bottom: 1px !important;
}
.et_pb_text_inner h2{
  font-size: 17px;
  font-weight: 500;
}
.entry h1 a{
  font-size: 19px;
}