body {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
}

/* HEADER / NAVBAR
   -------------------------------------------------- */

.site-header {
  background: #fff;
  height: 110px;
  display: flex;
  align-items: center;
  border-bottom: none; /* no line */
}

.nav-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo picture {
  display: block;
}

.nav-logo img {
  height: 60px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: #154b4a;
  font-size: 16px;
  font-weight: 400;
  transition: font-weight 0.15s, color 0.15s;
}

.nav-link.is-active {
  font-weight: 600;
}

@media (min-width: 901px) {
  .nav-link:hover {
    font-weight: 600;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Languages */

.lang-switch {
  display: flex;
  gap: 12px;
}

.lang-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #aaa;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}

.lang-pill.is-active {
  background: #54c477;
}

.lang-pill:not(.is-active):hover {
  background: #54c477;
  transform: translateY(-1px);
}

/* Toggle buttons (burger + X) */

.nav-toggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none; /* desktop hidden */
}

.nav-toggle img {
  width: 32px;
  height: 32px;
  display: block;
}








/* ABOUT dropdown */
.nav-dropdown{ position: relative; display: inline-block; }

/* Make sure the trigger is not a "real button" visually */
.nav-dropdown-toggle{
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  color: inherit;
}

/* IMPORTANT: create a small hover bridge so menu doesn't close */
.nav-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:12px;          /* bridge height */
}

/* Dropdown menu */
.nav-dropdown-menu{
  position: absolute;
  top: 100%;            /* NO GAP */
  left: 0;
  margin-top: 12px;     /* visual spacing but hover-bridge keeps it open */
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  padding: 10px;
  display: none;
  z-index: 99999;
}

/* Show on hover (desktop) */
@media (min-width: 901px){
  .nav-dropdown:hover .nav-dropdown-menu{ display:block; }
}

/* Show on tap (mobile JS toggle) */
.nav-dropdown.is-open .nav-dropdown-menu{ display:block; }

.nav-dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:#111;
  font-weight:600;
}
.nav-dropdown-menu a:hover{ background: rgba(0,0,0,.05); }






/* Join Us pill button in navbar */
.nav-join-pill{
  padding: 8px 16px;
  border-radius: 999px;
  background: #0b8a6a;
  color: #fff !important;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
}
.nav-join-pill:hover{
  background:#0a7b60;
  transform: translateY(-1px);
  opacity: 1 !important;
}





/* =========================
   NAVBAR VERTICAL ALIGN FIX
========================= */

.nav-inner{
  display: flex;
  align-items: center;   /* vertically center everything */
  justify-content: space-between;
}

/* main navigation container */
.main-nav{
  display: flex;
  align-items: center;   /* force vertical center */
  gap: 28px;
}

/* dropdown wrapper must behave like inline-flex */
.nav-dropdown{
  display: flex;
  align-items: center;
}

/* make links + dropdown buttons identical height */
.nav-link,
.nav-dropdown-toggle{
  display: inline-flex;
  align-items: center;
  height: 42px;          /* uniform navbar height */
  line-height: 1;
}

/* fix caret alignment */
.nav-caret{
  margin-left: 6px;
  font-size: 11px;
}

/* Join Us pill fix */
.nav-join-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;          /* same height as links */
  padding: 0 18px;       /* remove vertical padding */
  border-radius: 999px;
}

/* prevent dropdown button pushing content down */
.nav-dropdown-toggle{
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}







/* STICKY NAVBAR */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;

  /* keep it clean while scrolling */
  background: #fff;
  /* optional: subtle separation */
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* optional: if you ever see a 1px “jump” on scroll */
.site-header{
  will-change: transform;
}

/* MOBILE NAV
   -------------------------------------------------- */

/* extra polish for mobile */
@media (max-width: 900px) {

  /* Hero area */
  .gbis-hero {
    padding: 40px 0 44px;
  }

  .gbis-hero-text h1 {
    font-size: 26px;
    line-height: 1.35;
    text-align: center;   /* if you prefer centred on mobile */
    margin: 12px 16px 12px;
  }

  .gbis-hero-meta {
    margin-top: 8px;
  }

  /* Why this summit matters */
  .gbis-section:first-of-type {
    padding-top: 36px;
  }

  .gbis-section-title {
    margin-bottom: 16px;
  }

  /* Programme */
  .gbis-programme {
    margin-top: 16px;
  }

  .gbis-programme-row {
    padding: 12px 0 14px;
  }

  .gbis-programme-time {
    font-size: 28px;
    letter-spacing: 0.03em;
  }

  .gbis-programme-text {
    font-size: 15px;
  }

  .gbis-programme-presentation {
    font-size: 22px;
    margin-top: 28px;
  }

  /* Speakers */
  .gbis-speakers {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .gbis-speaker-card {
    border-radius: 14px;
    margin: 0 -4px;           /* lets the card go slightly wider */
  }

  .gbis-speaker-card img {
    height: 300px;
  }

  /* CTA */
  .gbis-cta-inner h2 {
    margin-bottom: 16px;
  }
}

/* GBIS 2025 PAGE
   -------------------------------------------------- */

.gbis-page {
  background: #ffffff;
}

/* container */
.gbis-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */

.gbis-hero {
  position: relative;
  padding: 72px 0 80px;
  background: radial-gradient(circle at top left, #0f8b4c 0, #064334 45%, #041f1a 85%);
  color: #ffffff;
  overflow: hidden;
}

.gbis-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(48, 210, 140, 0.6), transparent 55%);
  pointer-events: none;
}

.gbis-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

.gbis-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.gbis-hero-logos img {
  max-height: 40px;
  object-fit: contain;
}

.gbis-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.gbis-mark {
  max-width: 140px;
  margin-bottom: 8px;
}

.gbis-hero-text h1 {
  margin: 12px 0 16px;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
}

.gbis-hero-eyebrow {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.gbis-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.gbis-hero-banner {
  width: 100%;
  overflow: hidden;
}

.gbis-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}





/* disclaimer */

.gbis-disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: #6c8080;
  padding: 24px 0 32px;
  border-top: 1px solid #e1ece8;
  background: #f8fbfa;
  text-align: center;
}
















/* pills */

.gbis-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #23b56d;
  color: #23b56d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gbis-pillr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 44px;
  border-radius: 999px;
  background: #23b56d;
  border: 1px solid #23b56d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gbis-pillearn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 44px;
  border-radius: 999px;
  background: #3c3c3c;
  border: 1px solid #23b56d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gbis-hero-cta {
  margin-top: 4px;
}

/* GENERAL SECTION STYLES */

.gbis-section {
  padding: 64px 0;
}

.gbis-section-title {
  font-size: 30px;
  margin: 0 0 24px;
  color: #123c3c;
  text-align: left;
}

.gbis-section-title.light {
  color: #ffffff;
}

.gbis-intro .gbis-section-title {
  text-align: left;
}

/* two-column layout */

.gbis-two-column {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 32px;
  align-items: flex-start;
}

.gbis-section-body p {
  margin: 0 0 14px;
  color: #2d4a4a;
  line-height: 1.55;
}

/* gradient objectives section */

.gbis-section-gradient {
  background: radial-gradient(circle at top left, #0f8b4c 0, #064334 45%, #041f1a 85%);
  color: #ffffff;
}

.gbis-objectives .gbis-checklist li {
  color: #eafaf3;
}

.gbis-objectives .gbis-checklist li::before {
  color: #9ae6b4;
}

/* checklist */

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

.gbis-checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.gbis-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #54c477;
}

/* PROGRAMME */

.gbis-programme {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

/* one row in the timetable */
.gbis-programme-row {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  column-gap: 32px;
  padding: 16px 0 18px;
  position: relative;
}

.gbis-programme-time {
  grid-column: 1;
}

.gbis-programme-text {
  grid-column: 2;
}

/* thin line across the row */
.gbis-programme-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d5e2dd;
}

/* time on the left */
.gbis-programme-time {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3c5554;
  white-space: nowrap;
}

/* title on the right */
.gbis-programme-text {
  font-size: 16px;
  font-weight: 500;
  color: #3c5554;
  line-height: 1.6;
}

/* green rows (special ones) */
.gbis-programme-row--green .gbis-programme-text {
  color: #1da86a;
}

/* big green presentation title below the timetable */
.gbis-programme-presentation {
  margin: 40px 0 0;
  font-size: 28px;
  line-height: 1.35;
  max-width: 900px;
  color: #19a962;
}

/* SPEAKERS */

.gbis-speakers {
  background: linear-gradient(to bottom, #f4faf6 0, #fdfefe 60%);
}

.gbis-speakers-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gbis-speaker-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gbis-speaker-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.gbis-speaker-card h3 {
  margin: 14px 16px 4px;
  font-size: 18px;
  color: #173b3b;
}

.gbis-speaker-role {
  margin: 0 16px 16px;
  font-size: 14px;
  color: #587070;
}

/* CTA */

.gbis-cta {
  text-align: center;
  background: linear-gradient(to bottom, #f3fbf6 0, #f8fbfd 100%);
}

.gbis-cta-inner h2 {
  margin: 0 0 24px;
  font-size: 32px;
  color: #123c3c;
}

/* ORGANIZERS */

.gbis-organizers {
  padding-top: 24px;
  padding-bottom: 72px;
}

.gbis-organizers-label {
  text-align: center;
  margin: 0 0 18px;
  color: #547272;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gbis-organizers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.gbis-organizers-logos img {
  max-height: 40px;
  object-fit: contain;
}

.gbis-organizers-cta {
  text-align: center;
}

/* RESPONSIVE (general GBIS layout) */

@media (max-width: 900px) {

  .gbis-hero {
    padding: 48px 0 56px;
  }

  .gbis-hero-inner {
    gap: 32px;
  }

  .gbis-hero-logos img {
    max-height: 28px;
  }

  .gbis-hero-text h1 {
    font-size: 24px;
    text-align: center;
  }

  .gbis-hero-meta {
    flex-direction: column;
  }

  .gbis-section {
    padding: 40px 0;
  }

  .gbis-section-title {
    font-size: 24px;
    text-align: left;
  }

  .gbis-two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .gbis-programme-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .gbis-programme-time {
    font-size: 30px;
  }

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

  .gbis-cta-inner h2 {
    font-size: 26px;
  }
}

/* REGISTRATION FORM (gbis2025_register.php)
   -------------------------------------------------- */

.styled-form {
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
}

/* FORM GRID (40% / 40%) */
.styled-form .form-grid {
  display: grid;
  grid-template-columns: 40% 40%;
  gap: 40px;
  margin-bottom: 32px;
}

.styled-form .form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d4f4f;
  margin-bottom: 8px;
}

.styled-form .form-field input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid #bcd4cd;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.styled-form .form-field input:focus {
  border-color: #23b56d;
  outline: none;
}

/* MEMBER YES/NO PILL OPTIONS */
.member-block {
  margin: 40px 0;
}

.member-label {
  display: block;
  font-weight: 600;
  color: #1d4f4f;
  margin-bottom: 12px;
}

/* -------------------------------------------
   MEMBER YES/NO PILL BUTTONS (FIXED VERSION)
   ------------------------------------------- */

.member-options {
  display: flex;
  gap: 24px;
}

/* the label itself has no border/background; that lives on the span */
.member-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  font-weight: 600;
  color: #23b56d;
  background: transparent;
  position: relative;
  font-size: 16px;
}

/* full clickable area */
.member-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* the visible pill */
.member-pill span {
  pointer-events: none;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid #23b56d;
  background: #ffffff;
  color: #23b56d;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* hover state when not selected */
.member-pill:hover span {
  background: #eaffe9;
}

/* selected state: whole pill green, text white, outline green */
.member-pill input:checked + span {
  background: #23b56d;
  color: #ffffff;
  border-color: #23b56d;
}

/* SUBMIT BUTTON */
.register-btn {  
  margin-top: 20px;
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 999px;
  background: #23b56d;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.register-btn:hover {
  background: #1a824f;
}

/* --- MOBILE OVERRIDES FOR FORM + GBIS PAGE (FINAL) --- */
@media (max-width: 900px) {

  /* general container on phones */
  .gbis-container {
    padding: 0 16px;
  }

  /* form wrapper: softer padding, full-width look */
  .styled-form {
    padding: 16px 12px;
    border-radius: 0;
  }

  /* stack fields instead of 40/40 */
  .styled-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .styled-form .form-field label {
    font-size: 13px;
  }

  .styled-form .form-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
  }

  /* member pills full width, one per row */
  .member-options {
    flex-direction: column;
    gap: 12px;
  }

  .member-pill span {
    width: 100%;
    text-align: center;
  }

  /* big thumb-friendly submit button */
  .register-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin-top: 8px;
  }

  /* hero banner tighter on phones */
  .gbis-hero {
    padding: 32px 0 40px;
  }

  .gbis-hero-text h1 {
    font-size: 24px;
    line-height: 1.35;
    text-align: left;
  }

  .gbis-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gbis-section {
    padding: 32px 0;
  }

  .gbis-section-title {
    font-size: 24px;
    text-align: left;
  }

  /* Why this summit / Objectives → single column */
  .gbis-two-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Programme: time above text, smaller number */
  .gbis-programme-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 14px 0 16px;
  }

  .gbis-programme-time {
    font-size: 26px;
    letter-spacing: 0.04em;
  }

  .gbis-programme-text {
    font-size: 14px;
  }

  /* Speakers: one per row */
  .gbis-speakers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gbis-speaker-card img {
    height: 320px;
  }

  /* CTA text & button centered and full-width */
  .gbis-cta-inner h2 {
    font-size: 24px;
  }

  .gbis-cta .btn {
    width: 100%;
    justify-content: center;
  }
}






/* ===========================
   ABOUT US PAGE STYLES
   =========================== */


  /* ABOUT US – HERO SECTION */

.about-hero {
  background: #0f3b36; /* green background */
  padding: 80px 40px;
  text-align: center;
  color: white;
}

.about-hero-content {
  max-width: 1050px; /* increased so text fits in 2 lines */
  margin: 0 auto 60px;
}

/* ----- H1 FIXED TO 2 LINES ----- */
.about-hero h1 {
  font-size: 58px;      /* reduced slightly */
  font-weight: 700;
  line-height: 1.15;    /* tighter so it doesn’t expand */
  margin-bottom: 20px;
  max-width: 1050px;    /* guarantees 2 lines */
  margin-left: auto;
  margin-right: auto;
}

/* ----- P (H2 STYLE) FIXED TO 2 LINES ----- */
.about-hero p {
  font-size: 26px;      /* reduced slightly */
  line-height: 1.35;    /* prevents 3-line wrap */
  opacity: 0.9;
  font-weight: 300;
  max-width: 950px;     /* slightly narrower, 2-line guaranteed */
  margin-left: auto;
  margin-right: auto;
}

/* IMAGE GRID */
.about-hero-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1700px;
  margin: 0 auto;
}

.about-hero-images img {
  width: 40%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero-images {
    flex-direction: column;
  }

  .about-hero-images img {
    width: 100%;
    height: auto;
  }

  .about-hero h1 {
    font-size: 34px; /* still readable but 2 lines max */
    line-height: 1.2;
    max-width: 95%;
  }

  .about-hero p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 95%;
  }
}

/* ABOUT – CSR SECTION */
.about-csr {
  background: #ffffff;
  padding: 100px 0;
}

.csr-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* TWO COLUMN LAYOUT */
.csr-two-column {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
}

.csr-left h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f3b36;
}

.csr-right p {
  font-size: 17px;
  color: #445c5a;
  line-height: 1.65;
}


/* STATS ROW */
.csr-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid #e4edea;
  border-bottom: 1px solid #e4edea;
  margin-bottom: 100px;
}

.csr-stat {
  text-align: center;
  width: 22%;
}

.csr-stat h3 {
  font-size: 56px;
  color: #0f3b36;
  font-weight: 700;
  margin-bottom: 10px;
  
}

.csr-stat p {
  font-size: 15px;
  line-height: 1.55;
  color: #445c5a;
}

/* Vertical dividers */
.csr-divider {
  width: 1px;
  height: 80px;
  background: #e4edea;
}

/* MISSION SECTION */
.mission-section {
  background: #ffffff;
  padding: 80px 0;
}

.mission-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.mission-section h2 {
  font-size: 56px;
  font-weight: 700;
  color: #0f3b36;
  line-height: 1.25;
}

.mission-text p {
  max-width: 650px;
  font-size: 17px;
  color: #445c5a;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .csr-two-column {
    flex-direction: column;
    gap: 30px;
  }

  .csr-stats {
    flex-direction: column;
    gap: 40px;
  }

  .csr-divider {
    display: none;
  }

  .csr-stat {
    width: 100%;
  }

  .mission-container {
    flex-direction: column;
  }
}

/* ===========================
   CSR STYLE FOOTER
   =========================== */

.csr-footer {
  margin-top: 80px;
  padding: 40px 60px;
  background: linear-gradient(to bottom, #ffffff 0%, #e8fbe8 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #9e9e9e;
}

.csr-footer-inner {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px; /* Increase the gap for spacing */
}

.csr-footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.csr-footer-logo {
  width: 140px;
  opacity: 0.8;
}

.csr-footer-copy {
  font-size: 0.9rem;
  opacity: 0.6;
}

.csr-footer-nav {
  display: flex;
  gap: 30px;
  flex: 1; /* Make this section expand */
  justify-content: center;
}

.csr-footer-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #9e9e9e;
  opacity: 0.8;
  transition: 0.2s ease;
}

.csr-footer-nav a:hover {
  opacity: 1;
}

.csr-footer-right {
  display: flex;
  gap: 25px;
}

.csr-footer-right a {
  font-size: 0.9rem;
  color: #9e9e9e;
  text-decoration: none;
  opacity: 0.8;
}

.csr-footer-right a:hover {
  opacity: 1;
}

/* MOBILE FOOTER */
@media (max-width: 1000px) {
  .csr-footer-inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  /* Make sure navigation links are stacked vertically on mobile */
  .csr-footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  /* Legal links should also stack vertically */
  .csr-footer-right {
    flex-direction: column;
    gap: 15px;
  }
}

.hero-csr {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    width: 40%;
    max-width: 760px;
    min-width: 320px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 16px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.55;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 900px) {
  .hero-content {
    width: 88%;
    min-width: 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }
}


.hero-btn {
    display: inline-block;
    background-color: #69C281;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.hero-btn:hover {
    background-color: #57A86B;
}


.board-section {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.two-column-board {
    display: flex;
    gap: 60px; /* SAME gap as mission/CSR two column */
}

.board-left {
    flex: 1;
}

.board-right {
    flex: 2;
}

.board-right p {
    margin: 0; /* Remove any browser default vertical padding */
}



.timeline-section {
  background: #073c36;
  padding: 80px 60px;
  color: white;
}

.timeline-inner {
  max-width: 1400px;
  margin: auto;
}

.timeline-section h2 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-subtitle {
  color: #d2e4df;
  font-size: 17px;
  margin-bottom: 60px;
}

/* YEARS */
.timeline-years {
  display: flex;
  justify-content: space-between;
  max-width: 2000px;
  margin-bottom: 25px;
  gap: 60px;
}

.timeline-years .year {
  font-size: 64px;
  font-weight: 600;
  color: #7fa19b;
  transition: 0.2s;
}

.timeline-years .year.active {
  color: white;
}

/* LINE + DOTS */
.timeline-track {
  height: 1px;
  background: #4b6f68;
  position: relative;
  max-width: 1310px;
  margin-bottom: 50px;
  margin-left: 2%;
}

.timeline-track .dot {
  width: 14px;
  height: 14px;
  background: #4b6f68;
  border-radius: 50%;
  position: absolute;
  top: -6px;
}

.timeline-track .dot:nth-child(1) { left: 0%; }
.timeline-track .dot:nth-child(2) { left: 33%; }
.timeline-track .dot:nth-child(3) { left: 66%; }
.timeline-track .dot:nth-child(4) { left: 100%; }

.timeline-track .dot.active {
  background: #e5e5e5;
}

/* TEXT */
.timeline-text {
  max-width: 700px;
  color: #d2e4df;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ARROWS */
.timeline-arrows {
  display: flex;
  gap: 20px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #7fa19b;
  border-radius: 50%;
  background: transparent;
  color: #7fa19b;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
}

.arrow-btn:hover {
  border-color: white;
  color: white;
}

.timeline-years .year:hover {
  color: #ffffff;
  cursor: pointer;
}

.timeline-track .dot:hover {
  background: #ffffff;
  cursor: pointer;
}





/* FOOTER
   -------------------------------------------------- */





.site-footer{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
  padding:40px 0 55px;
  position:relative;
}

.footer-inner{
  max-width:1150px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}

.footer-left{ flex: 1; min-width: 340px; }
.footer-right{ width: 260px; }

.footer-title{ margin:0 0 8px; font-size:28px; }
.footer-subtitle{ margin:0 0 18px; opacity:.85; }

.footer-newsletter{
  display:flex;
  gap:16px;
  align-items:center;
  margin: 14px 0 26px;
}

.footer-newsletter input{
  width:320px;
  max-width:100%;
  padding:14px 16px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:28px;
  outline:none;
}

.footer-newsletter button{
  padding:14px 28px;
  border:0;
  border-radius:28px;
  cursor:pointer;
  background:#00c853; /* green */
  color:#fff;
  font-weight:700;
}

.footer-brand-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.footer-logo{ height:44px; width:auto; display:block; }

.footer-socials{ display:flex; gap:14px; align-items:center; }
.footer-social img{ height:18px; width:auto; display:block; }

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links a{ color:#20114b; font-weight:600; text-decoration:none; }
.footer-links a:hover{ text-decoration:underline; }

.footer-msg{ margin-top:12px; font-size:14px; opacity:.9; }

/* Back-to-top: animated */
.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:44px;
  height:44px;
  border:0;
  border-radius:10px;
  background:#7CFF4A;
  color:#1b1b1b;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  animation: floaty 1.8s ease-in-out infinite;
}

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@media (max-width: 900px){
  .footer-inner{ flex-direction:column; }
  .footer-right{ width:100%; }
  .footer-left{ min-width: unset; }
  .footer-newsletter{ flex-direction:column; align-items:flex-start; }
  .footer-newsletter button{ width:auto; }
}











/* =========================================
   ABOUT PAGE: Board/Staff cards should be flat
   (no radius, no border, no shadow) + left aligned
========================================= */
.page-about .gbis-speakers-grid {
  /* optional: keep spacing consistent */
}

.page-about .gbis-speaker-card {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent;      /* if you want totally “flat” */
  overflow: visible;            /* no clipping since no radius */
}

/* keep images square-cornered too */
.page-about .gbis-speaker-card img {
  border-radius: 0 !important;
}

/* left align the text area */
.page-about .gbis-speaker-card .speaker-info {
  text-align: left !important;
  padding: 14px 16px 16px;      /* gives a clean left column feel */
}

/* ensure title + name align left */
.page-about .gbis-section-title,
.page-about .gbis-speaker-card h3,
.page-about .gbis-speaker-card h4 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* optional: tighten typography a bit */
.page-about .gbis-speaker-card h3 {
  margin: 0 0 6px !important;
}

.page-about .gbis-speaker-card h4 {
  margin: 0 !important;
}






/* ===========================
   HOMEPAGE HERO SLIDER
   =========================== */

.home-hero {
  background: #fff;
  padding: 28px 0 10px;
}

.home-hero-shell {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-hero-slider {
  position: relative;
  height: 560px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 450ms ease, transform 650ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 40%, rgba(0,0,0,0.05), rgba(0,0,0,0.40));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  padding: 0 18px;
  text-align: center;
  color: #fff;
}

.home-hero-content h1 {
  margin: 0 0 16px;
  font-size: 68px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-hero-content p {
  margin: 0 auto 22px;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.95;
}

.home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 160ms ease, background 160ms ease;
}

.home-hero-cta:hover {
  background: rgba(255,255,255,0.36);
  transform: translateY(-1px);
}

.home-hero-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #54c477;
  color: #0b2e2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* arrows */
.home-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 160ms ease, transform 160ms ease;
}

.home-hero-nav:hover {
  background: rgba(0,0,0,0.35);
}

.home-hero-prev { left: 16px; }
.home-hero-next { right: 16px; }

/* dots */
.home-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.home-hero-dot {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 180ms ease;
}

.home-hero-dot.is-active {
  background: rgba(255,255,255,0.85);
}

/* responsive */
@media (max-width: 900px) {
  .home-hero-shell { padding: 0 16px; }
  .home-hero-slider { height: 420px; border-radius: 12px; }

  .home-hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .home-hero-content p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .home-hero-prev { left: 10px; }
  .home-hero-next { right: 10px; }
}





/* ===============================
   HOMEPAGE HERO (CONTENT WIDTH)
=================================*/

.home-hero-section {
  padding: 30px 0 20px;
}

.home-hero-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-hero-slider {
  position: relative;
  height: 560px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home-hero-slide.active {
  opacity: 1;
}

.home-hero-overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
}

.home-hero-content {
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  max-width:1000px;
  padding:0 20px;
}

.home-hero-content h1 {
  font-size:68px;
  line-height:1.05;
  margin-bottom:18px;
  font-weight:700;
  letter-spacing:-0.02em;
}

.home-hero-content p {
  font-size:16px;
  max-width:760px;
  margin:0 auto 22px;
  opacity:.95;
}

.home-hero-cta {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.25);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.cta-circle {
  width:32px;
  height:32px;
  background:#54c477;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#083c2f;
  font-weight:700;
}

/* arrows */
.hero-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(0,0,0,.3);
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.hero-arrow.prev { left:18px; }
.hero-arrow.next { right:18px; }

/* dots */
.hero-dots {
  position:absolute;
  bottom:16px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:8px;
}

.hero-dots .dot {
  width:40px;
  height:4px;
  background:rgba(255,255,255,.4);
  border:0;
  border-radius:999px;
}

.hero-dots .dot.active {
  background:#fff;
}

/* mobile */
@media (max-width: 900px) {
  .home-hero-slider { height:420px; }
  .home-hero-content h1 { font-size:32px; }
}







/* ===============================
   HOMEPAGE: LATEST NEWS (3 cards)
=================================*/

.home-latest-news{
  padding: 26px 0 40px;
}

.home-latest-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin: 6px 0 16px;
}

.home-latest-head h2{
  margin:0;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.home-latest-all{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:#111;
  opacity:.8;
}
.home-latest-all:hover{ opacity:1; }

.home-news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-news-card{
  display:block;
  text-decoration:none;
  color:inherit;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.home-news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

.home-news-thumb{
  height: 170px;
  background:#f1f1f1;
  background-size: cover;
  background-position:center;
}

.home-news-body{
  padding: 14px 14px 16px;
}

.home-news-date{
  font-size:12px;
  opacity:.65;
  margin-bottom: 6px;
}

.home-news-title{
  font-size:16px;
  font-weight:700;
  line-height:1.25;
  margin-bottom: 8px;
}

.home-news-excerpt{
  font-size:13px;
  line-height:1.45;
  opacity:.85;
}

.home-news-empty{
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(0,0,0,0.20);
  border-radius: 12px;
  opacity: .75;
}

@media (max-width: 950px){
  .home-news-grid{ grid-template-columns: 1fr; }
  .home-news-thumb{ height: 190px; }
}




/* Homepage stats strip wrapper (uses About stats styles inside) */
.home-stats-strip{
  padding: 0px 0 20px;   /* adjust spacing under news */
}


/* Homepage journey spacing */
.timeline-section--home{
  margin-top: 0;
}

/* Remove the About page’s centered max-width (1400) since we use home-hero-container */
.timeline-section--home .timeline-inner{
  max-width: none;
  margin: 0;
  padding: 0; /* home-hero-container already adds side padding */
}

/* Optional: tighter vertical padding on homepage */
.timeline-section--home{
  padding: 70px 0;
}


/* HOMEPAGE: Journey content width fix */
.timeline-section--home .timeline-inner{
  max-width: 1450px;        /* same as home-hero-container */
  margin: 0 auto;           /* center it */
  padding: 0 24px;          /* same side spacing */
}






/* =========================================
   RESOURCES PAGE
========================================= */

.resources-page {
  padding: 80px 0 100px;
  background: #f4faf6;
  min-height: 60vh;
}

.resources-wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.resources-header {
  margin-bottom: 42px;
}

.resources-title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
  color: #173b3b;
}

.resources-intro {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: #6f8a8a;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.resource-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.resource-card-image {
  aspect-ratio: 4 / 3;
  background: #e9efeb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.resource-card:hover .resource-card-image img {
  transform: scale(1.04);
}

.resource-card-image-inner {
  width: 180px;
  height: 240px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #173b3b;
}

.resource-card-body {
  padding: 22px 24px 20px;
}

.resource-card-date {
  font-size: 13px;
  color: #7b8a8a;
  margin-bottom: 10px;
}

.resource-card-title {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}

.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #edf0f2;
  padding-top: 16px;
}

.resource-download {
  font-size: 15px;
  font-weight: 600;
  color: #23b56d;
}

.resource-langs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.resource-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f6f4;
  color: #23b56d;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.resource-lang:hover {
  background: #23b56d;
  color: #ffffff;
  transform: translateY(-1px);
}

.resources-empty {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  color: #6f8a8a;
}

@media (max-width: 900px) {
  .resources-page {
    padding: 42px 0 60px;
  }

  .resources-wrap {
    padding: 0 16px;
  }

  .resources-header {
    margin-bottom: 28px;
  }

  .resources-title {
    font-size: 32px;
  }

  .resources-intro {
    font-size: 15px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .resource-card-title {
    font-size: 24px;
    line-height: 1.15;
  }

  .resource-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .resource-card-image-inner {
    width: 150px;
    height: 210px;
  }
}




/* =========================================
   NEWSLETTER PAGE
========================================= */

.newsletter-page {
  padding: 70px 0 90px;
  background: #f4faf6;
  min-height: 60vh;
}

.newsletter-wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-header {
  margin-bottom: 40px;
}

.newsletter-title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #173b3b;
}

.newsletter-intro {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
  color: #6f8a8a;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.newsletter-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.newsletter-card-top {
  padding: 26px 26px 16px;
}

.newsletter-card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f1f1f;
}

.newsletter-card-date {
  margin-top: 14px;
  font-size: 15px;
  color: #7b8b8b;
}

.newsletter-card-cover {
  padding: 0 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-card-cover img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #edf2f0;
}

.newsletter-card-cover-placeholder {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  border-radius: 16px;
  background: #edf2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #173b3b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.newsletter-card-actions {
  margin-top: auto;
  background: #4433ee;
  color: #ffffff;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-download-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.newsletter-lang-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #4433ee;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.newsletter-lang-pill:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.newsletter-empty {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  color: #6f8a8a;
}

@media (max-width: 1100px) {
  .newsletter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .newsletter-page {
    padding: 40px 0 56px;
  }

  .newsletter-title {
    font-size: 32px;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card-title {
    font-size: 22px;
  }
}





/* =========================================
   CSR ESG SDG
========================================= */


.csresg-section{
padding:80px 0;
background:#f4faf6;
}

.csresg-tabs{
display:flex;
gap:12px;
margin:40px 0;
}

.csresg-tabs .tab{
padding:10px 22px;
border-radius:30px;
background:#e9f7ef;
color:#173b3b;
font-weight:600;
text-decoration:none;
}

.csresg-tabs .tab.active{
background:#23b56d;
color:white;
}

.content-blocks{
display:flex;
flex-direction:column;
gap:40px;
}

.text-block{
font-size:18px;
line-height:1.7;
color:#173b3b;
max-width:850px;
}

.image-block img{
width:100%;
border-radius:14px;
}

.video-block iframe{
width:100%;
height:520px;
border-radius:14px;
}






/* =========================================
   CSR / ESG / SDG PAGE
========================================= */

.csresgsdg-page {
  background: #f4faf6;
  padding: 70px 0 90px;
}

.csresgsdg-wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.csresgsdg-header {
  max-width: 980px;
  margin-bottom: 40px;
}

.csresgsdg-title {
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  color: #123c3c;
}

.csresgsdg-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #4f6767;
  max-width: 980px;
}

.csresgsdg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.csresgsdg-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e9f7ef;
  color: #123c3c;
  text-decoration: none;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.csresgsdg-tab:hover {
  transform: translateY(-1px);
}

.csresgsdg-tab.is-active {
  background: #23b56d;
  color: #ffffff;
}

.csresgsdg-blocks {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.csresgsdg-block {
  width: 100%;
}

.csresgsdg-block-text {
  max-width: 980px;
}

.csresgsdg-richtext {
  font-size: 18px;
  line-height: 1.8;
  color: #173b3b;
}

.csresgsdg-richtext p {
  margin: 0 0 20px;
}

.csresgsdg-richtext h2,
.csresgsdg-richtext h3,
.csresgsdg-richtext h4 {
  color: #123c3c;
  margin: 0 0 18px;
}

.csresgsdg-block-image img {
  width: 100%;
  max-width: 980px;
  display: block;
  border-radius: 18px;
}

.csresgsdg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.csresgsdg-gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.csresgsdg-block-video {
  max-width: 980px;
}

.csresgsdg-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
}

.csresgsdg-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .csresgsdg-page {
    padding: 40px 0 56px;
  }

  .csresgsdg-title {
    font-size: 40px;
  }

  .csresgsdg-intro,
  .csresgsdg-richtext {
    font-size: 16px;
    line-height: 1.7;
  }

  .csresgsdg-gallery-grid {
    grid-template-columns: 1fr;
  }

  .csresgsdg-gallery-item img {
    height: 240px;
  }
}







/* =========================================================
   TESTIMONIAL MARQUEE
   ========================================================= */

.site-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.testimonial-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(84, 196, 119, 0.10), transparent 30%),
    linear-gradient(180deg, #f5fbf7 0%, #edf7f1 100%);
}

.testimonial-marquee-head {
  margin-bottom: 28px;
}

.testimonial-marquee-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  color: #154b4a;
  font-weight: 600;
}

.testimonial-marquee-wrap {
  width: 100%;
  overflow: hidden;
}

.testimonial-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: testimonialMarqueeLTR var(--tm-speed, 45s) linear infinite;
  will-change: transform;
}

.testimonial-marquee-wrap:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: var(--tm-card-width, 360px);
  min-width: var(--tm-card-width, 360px);
  max-width: var(--tm-card-width, 360px);
  min-height: 285px;
  background: linear-gradient(180deg, #1b5d58 0%, #154b4a 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-sizing: border-box;
  box-shadow: 0 14px 34px rgba(21, 75, 74, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-quote {
  font-size: 29px;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 26px;
}

.testimonial-card-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card-photo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(84, 196, 119, 0.30);
  background: rgba(255,255,255,0.08);
}

.testimonial-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card-meta {
  min-width: 0;
}

.testimonial-card-name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-card-company {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

@keyframes testimonialMarqueeLTR {
  from {
    transform: translateX(calc(-50% - 11px));
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .testimonial-marquee-section {
    padding: 56px 0;
  }

  .testimonial-marquee-head {
    margin-bottom: 20px;
  }

  .testimonial-marquee-head h2 {
    font-size: 30px;
  }

  .testimonial-marquee-track {
    gap: 16px;
  }

  .testimonial-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    min-height: 240px;
    border-radius: 18px;
    padding: 22px 20px 18px;
  }

  .testimonial-card-quote {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .testimonial-card-photo {
    width: 52px;
    height: 52px;
  }

  .testimonial-card-name {
    font-size: 17px;
  }

  .testimonial-card-company {
    font-size: 14px;
  }
}


/* =========================================================
   PARTNERS / SUPPORTERS
   ========================================================= */

.partners-section {
  padding: 72px 0 60px;
  background: #ffffff;
}

.partners-section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 600;
  color: #154b4a;
}

.partners-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 34px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 200px;
  flex: 0 1 160px;
}

.partner-logo-item img {
  display: block;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .partners-section {
    padding: 52px 0 44px;
  }

  .partners-section-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .partners-logos-grid {
    gap: 18px 24px;
  }

  .partner-logo-item {
    flex: 0 1 130px;
    min-width: 100px;
    max-width: 160px;
  }

  .partner-logo-item img {
    max-width: 160px;
    max-height: 46px;
  }
}

body{
  margin:0;
  font-family:"Plus Jakarta Sans", sans-serif;
  min-height:100vh;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #ddfbf8 100%);
  background-attachment: fixed; /* keeps it smooth while scrolling */
}