/* Base */
:root {
  --color-primary: #83b296;
  --color-primary-dark: #6f9f83;
  --color-bg-light: #f4f4f0;
  --color-heading: #374151;
  --color-body: #4b5563;
  --color-overlay-default: rgba(231, 234, 234, 0.7);
  --color-footer: #3b465a;
  --header-height: 112px;
  --header-height-scrolled: 82px;
  --header-logo-width: 214px;
  --header-logo-width-scrolled: 170px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-body);  
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.15;
}
h2{
  font-size: 36px;
  line-height: 40px;
}
h3{
  font-size: 30px;
  line-height: 40px;
}
.section-title {
  margin-bottom: 28px;
  font-size: 36px;
  letter-spacing: -0.03em;
}
.custom-btn {
  min-width: 144px;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active {
  background-color: var(--color-primary-dark)!important;
  color: #fff;
  transform: translateY(-1px);
}
/* Header */
.site-header {
  min-height: var(--header-height);
  background: transparent;
  transition: background-color 0.35s ease, min-height 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  min-height: var(--header-height-scrolled);
  background-color: rgba(55, 65, 81, 0.96);
  box-shadow: 0 10px 30px rgba(12, 19, 30, 0.18);
}
.header-nav {
  min-height: var(--header-height);
  transition: min-height 0.35s ease;
}
.site-header.is-scrolled .header-nav {
  min-height: var(--header-height-scrolled);
}
.header-brand img {
  width: var(--header-logo-width);
  transition: width 0.35s ease;
}
.site-header.is-scrolled .header-brand img {
  width: var(--header-logo-width-scrolled);
}
.site-header .nav-link {
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #fff;
  opacity: 0.8;
}
.site-header .navbar-toggler {
  padding-right: 0;
}
.site-header .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
/* Hero */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 160px 0 120px;
  background: url("../images/hero-background.jpg") center center / cover no-repeat;
  height: 100vh;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(231, 236, 239, 0.42), transparent 22%),
    linear-gradient(180deg, rgba(7, 33, 56, 0.5), rgba(5, 28, 36, 0.52));
}
.hero-content {
  color: #fff;
}
.hero-logo {
  width: 580px;
  margin: 0 auto 38px;
}
.hero-text {
  max-width: 790px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
/* Introduction */
.intro-section {
  padding: 92px 0 84px;
}
.intro-section p + p {
  margin-top: 22px;
}
/* Features */
.features-section {
  padding: 0 0 100px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 18px;
  isolation: isolate;
  transition: all ease 0.4s;
}
.feature-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 430px;
  padding: 28px 26px 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 20%, rgba(0, 0, 0, 0.7) 100%);
  transition: all ease 0.4s;
}
.card-overlay .icon{
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px; 
  border: 2px solid var(--color-primary); 
  transition: all ease 0.4s;
}
.card-overlay:hover .icon{
  background: transparent;
  border-color: #fff;
}
.feature-icon {
  width: 28px;
  height: 24px;  
}
.feature-title {
  max-width: 220px;
  margin-bottom: 12px;
  font-size: 46px;
  color: #fff;
}
.feature-description {
  max-width: 100%;
  font-size: 16px;
  line-height: 24px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: all ease 1s;
}
.feature-card:hover .card-overlay,
.feature-card:focus-within .card-overlay,
.feature-card.is-active .card-overlay {
  background:
    linear-gradient(180deg, rgba(131, 178, 150, 0.93), rgba(131, 178, 150, 0.95));
}
.feature-card:hover .feature-description,
.feature-card:focus-within .feature-description,
.feature-card.is-active .feature-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
}
/* CTA */
.cta-section {
  padding: 82px 0 96px;
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(75, 85, 99, 0.08);
}
.cta-section p {
  max-width: 650px;
  margin: 0 auto 30px;
}
/* Footer */
.footer-section {
  padding: 74px 0 24px;
  background-color: var(--color-footer);
  color: rgba(255, 255, 255, 0.72);
}
.footer-logo {
  width: 204px;
  margin: 0 auto 28px;
}
.footer-title {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}
.footer-text {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.footer-nav {
  margin-bottom: 42px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-primary);
  opacity: 1;
  transform: translateY(-1px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}
.footer-bottom a{
	color: rgba(255, 255, 255, 0.58);
	transition: all ease 0.4s;
}
.footer-bottom a:hover{
	color: #83B296;
}
.footer-section h3{
  color: #fff;
  font-size: 18px;
  line-height: 18px;
}
.footer-section .social-icons{
  margin-bottom: 30px;
  color: #fff;
}
.footer-section .social-icons a{
  color: #fff;
  padding: 0 8px;
  transition: all ease 0.4s;
  font-size: 20px;
}
.footer-section .social-icons a svg{
  fill: #fff!important;
  transition: all ease 0.4s;
  width: 25px!important;
  height: 25px!important;
}
.footer-section .social-icons a:hover{
  color: #83b296;
}
.footer-section .social-icons a:hover svg{
  fill: #83b296!important;
}

/* Responsive */
@media (max-width: 991.98px) {
  :root {
    --header-height: 92px;
    --header-height-scrolled: 78px;
    --header-logo-width: 180px;
    --header-logo-width-scrolled: 156px;
  }
  .site-header .navbar-collapse {
        margin-top: 16px;
      padding: 18px 20px;
      border-radius: 16px;
      background-color: rgba(55, 65, 81, 0.95);
      position: absolute;
      width: auto;
      top: 77px;
      border-radius: 0;
      margin: 0 -15px;
      left: 0;
      right: 0;
      padding: 20px 20px;
  }
  .site-header .navbar-nav {
    gap: 14px;
  }
  .hero-section {
    min-height: 720px;
    padding: 140px 0 90px;
  }
  .hero-logo {
    width: 480px;
  }
  .intro-section {
    padding: 76px 0 72px;
  }
  .features-section {
    padding-bottom: 84px;
  }
  .cta-section {
    padding: 72px 0 84px;
  }
  .feature-card,
  .card-overlay{
    min-height: 320px;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }
  .section-title {
    font-size: 30px;
  }
  .hero-section {
    min-height: 640px;
    padding: 130px 0 72px;
  }
  .hero-logo {
    width: 320px;
    margin-bottom: 28px;
  }
  .hero-text {
    font-size: 16px;
  }
  .feature-card,
  .card-overlay {
    min-height: 360px;
  }
  .feature-title {
    font-size: 28px;
  }
  .footer-nav {
    margin-bottom: 32px;
  }
  .footer-menu {
    gap: 22px;
  }
}
/* ================================
ABOUT PAGE STYLES
================================ */
/* About Hero Section */
.about-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  max-height: 650px;
  padding: 150px 0 96px;
  background: url("../images/about-hero.jpg") center center / cover no-repeat;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 34, 0.8) 0%, rgba(10, 20, 35, 0.5) 38%, rgba(10, 20, 35, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 22, 35, 0.38), rgba(11, 22, 35, 0.42));
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #fff;
}
.about-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 60px);
  color: #fff;
  letter-spacing: -0.04em;
}
.about-hero-content p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}
/* About Content Section */
.about-content-section {
  padding: 76px 0 34px;
}
.about-copy-block {
  margin-bottom: 50px;
}
.about-copy-block p + p {
  margin-top: 26px;
}
.about-subtitle-row {
  display: flex;
  justify-content: flex-end;
  margin: 18px 0 24px;
}
.about-subtitle-row img {
  width: 72px;
  opacity: 0.95;
}
.about-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
/* Coalition Launch Section */
.coalition-launch-section {
  padding: 42px 0 84px;
}
.coalition-launch-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}
.coalition-launch-header h2 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  letter-spacing: -0.04em;
}
.coalition-launch-icon {
  width: 120px;
  flex-shrink: 0;
  margin-top: 0;
}
.coalition-launch-copy {
  margin-bottom: 40px;
}
.coalition-launch-copy p + p {
  margin-top: 26px;
}
/* Members Section */
.members-section {
  padding: 76px 0 88px;
  background-color: var(--color-bg-light);
}
.members-title {
  margin-bottom: 30px;
}
.members-subtitle {
  margin-bottom: 34px;
}
.member-card {
  position: relative;
  overflow: hidden;  
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.member-card::after{
  content: '';
  padding-bottom: 100%;
  display: block;
}
.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.member-card-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 188px;
  padding: 18px 16px 14px;
}
.country-name {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
}
.member-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}
.member-section {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(131, 178, 150, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f6f2 0%, #efeee9 100%);
}
.member-section .team-section-subtitle {
  max-width: 620px;
  margin: 0 auto 34px;
}
.member-profile-card {
  padding: 28px;
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 48px rgba(55, 65, 81, 0.08);
  backdrop-filter: blur(10px);
}
.member-profile-top {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.member-profile-image-wrap {
  position: relative;
  width: 200px;
  min-width: 200px;
  
}
.member-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}
.member-profile-flag {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 60px;
  height: 60px;
  padding: 2px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.16);
}
.member-profile-flag img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}
.member-profile-name {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.15;
}
.member-profile-position {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #4d5b55;
}
.member-profile-country {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0;
  padding: 0.45rem 20px;
  border-radius: 999px;
  background-color: rgba(131, 178, 150, 0.18);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #304339;
}
.member-profile-quote {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
}
.member-profile-quote p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #42505d;
  text-indent: 40px;
}
.member-profile-quote p::before {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url(../images/quote.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;  
  top: -2px;
  left: 0;
}


.member-wrap{
  background: white!important;
}

.page-slug-the-governments .about-hero-content{
  max-width: 700px;
}
.page-slug-the-governments .about-hero-content p{
  max-width: 630px;
}


@media (max-width: 991.98px) {
  .about-hero-section {
    min-height: 580px;
    max-height: none;
    padding: 136px 0 82px;
  }
  .coalition-launch-header {
    flex-direction: column;
  }
  .coalition-launch-icon {
    margin-top: 0;
  }
  .member-section {
    padding: 72px 0 76px;
  }
  .member-profile-card {
    padding: 24px;
  }
  
}
@media (max-width: 767.98px) {
  .about-hero-section {
    min-height: 520px;
    padding: 124px 0 68px;
  }
  .about-content-section {
    padding: 60px 0 28px;
  }
  .about-subtitle-row {
    margin: 14px 0 20px;
  }
  .coalition-launch-section {
    padding: 28px 0 68px;
  }
  .coalition-launch-header h2 {
    font-size: 32px;
  }
  .members-section {
    padding: 64px 0 72px;
  }
  .member-section {
    padding: 60px 0 64px;
  }
  .member-section .team-section-subtitle {
    margin-bottom: 26px;
  }
  .member-profile-card {
    padding: 28px 28px;
    border-radius: 20px;
  }
  .member-profile-top {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 18px;
    align-items: flex-start;
  }
  .member-profile-top{
    margin-bottom: 40px;
  }
  .member-profile-image-wrap,
  .member-profile-image {
    width: 132px;
    height: 132px;
    min-width: 132px;
  }
  .member-profile-name {
    font-size: 24px;
  }
  .member-profile-quote p {
    font-size: 16px;
    line-height: 1.7;
  }
}
/* =================================
SECRETARIAT PAGE STYLES
================================= */
.secretariat-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  max-height: 650px;
  padding: 150px 0 96px;
  background: url("../images/Secretariat-hero.jpg") center center / cover no-repeat;
}
.secretariat-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 34, 0.82) 0%, rgba(10, 20, 35, 0.5) 42%, rgba(10, 20, 35, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 22, 35, 0.34), rgba(11, 22, 35, 0.44));
}
.secretariat-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #fff;
}
.secretariat-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 60px);
  color: #fff;
  letter-spacing: -0.04em;
}
.secretariat-hero-content p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}
.team-section {
  padding: 88px 0 92px;
  background-color: #ecebe7;
}
.team-section-subtitle {
  max-width: 520px;
  margin: 0 auto 28px;
}
.team-card {
  overflow: hidden;
  border-radius: 16px;
  background-color: #f5f4ef;
  box-shadow: 0 18px 40px rgba(55, 65, 81, 0.08);
}
.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.team-info {
  min-height: 116px;
  padding: 16px 20px 16px;
  background-color: var(--color-heading);
}
.team-info h3 {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.1;
  color: #fff;
}
.team-role {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}
.team-info a {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
  transition: all ease 0.4s;
}
.team-info a:hover,
.team-info a:focus {
  color: #fff;
  text-decoration: none;
}
.secretariat-about-section {
  padding: 88px 0 98px;
  background-color: #fcfcfc;
}
.secretariat-about-section p {
  max-width: 760px;
  margin: 0 auto;
}
.secretariat-services-section {
  padding: 88px 0 96px;
  background-color: #e9e7e2;
}
.service-card {
  padding: 30px 24px 28px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(55, 65, 81, 0.06);
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background-color: var(--color-primary);
}
.icon-circle img {
  width: 24px;
  height: 24px;
}
.service-title {
  max-width: 200px;
  margin: 0 auto 16px;
  font-size: 20px;
  line-height: 1.3;
}
.service-description {
  max-width: 210px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
}
.partner-organisations-section {
  padding: 88px 0 100px;
  background-color: #fff;
}
.partner-section-subtitle {
  max-width: 800px;
  margin: 0 auto 30px;
}
.partner-card {
  padding: 30px 26px 20px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  margin-bottom: 24px;
  border-radius: 16px;
  background-color: #f2f0ed;
}
.partner-logo img {
  max-height: 102px;
  width: auto;
  transition: all ease 0.4s;
}
.partner-logo:hover img{
  max-height: 90px;
}
.partner-name {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
}
.partner-name a{
  color: #0f1728;
  transition: all ease 0.4s;
}
.partner-name a:hover{
  color: #6f9f83;
}
.partner-description {
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .secretariat-hero-section {
    min-height: 580px;
    max-height: none;
    padding: 136px 0 82px;
  }
  .team-section,
  .secretariat-about-section,
  .secretariat-services-section,
  .partner-organisations-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .service-card {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 767.98px) {
  .secretariat-hero-section {
    min-height: 520px;
    padding: 124px 0 68px;
  }
  .team-section,
  .secretariat-about-section,
  .secretariat-services-section,
  .partner-organisations-section {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  .team-section-subtitle,
  .partner-section-subtitle {
    margin-bottom: 24px;
  }
  .team-info {
    min-height: auto;
  }
  .team-info h3,
  .service-title {
    font-size: 22px;
  }
  .partner-logo {
    min-height: 132px;
  }
  .partner-logo img {
    max-height: 68px;
  }
}
/* ================================
NEWS & INSIGHTS PAGE STYLES
================================ */
.news-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  max-height: 650px;
  padding: 150px 0 96px;
  background: url("../images/news-hero.jpg") center center / cover no-repeat;
}
.news-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 34, 0.82) 0%, rgba(10, 20, 35, 0.5) 40%, rgba(10, 20, 35, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 22, 35, 0.34), rgba(11, 22, 35, 0.48));
}
.news-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #fff;
}
.news-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 60px);
  color: #fff;
  letter-spacing: -0.04em;
}
.news-hero-content p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}
.latest-news-section {
  padding: 86px 0 62px;
  background-color: #fff;
}
.latest-news-swiper {
  padding-bottom: 44px;
}
.news-card-featured {
  background-color: transparent;
}
.featured-news-image-link {
  display: block;
}
.featured-news-image {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(55, 65, 81, 0.08);
}
.featured-news-content {  
  padding-left: 30px;
}
.featured-news-title {
  margin: 10px 0 18px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.featured-news-excerpt {
  margin-bottom: 24px;
}
.latest-news-section .swiper-pagination {
  position: static;
  margin-top: 26px;
  text-align: center;
}
.latest-news-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background-color: rgba(55, 65, 81, 0.3);
  opacity: 1;
}
.latest-news-section .swiper-pagination-bullet-active {
  background-color: var(--color-heading);
}
.news-filter-section {
  margin-bottom: 34px;
}
.news-grid-section {
  padding: 56px 0 94px;
  background-color: #f3f2ee;
}
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-pill {
  min-width: 68px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 999px;
  background-color: #fff;
  font-size: 13px;
  line-height: 1;
  color: var(--color-heading);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-pill.active,
.filter-pill:hover,
.filter-pill:focus {
  border-color: var(--color-heading);
  background-color: var(--color-heading);
  color: #fff;
}
.news-grid-item.is-hidden {
  display: none;
}
.news-grid-section nav .page-numbers,
.category-archive-section nav .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-grid-section nav .page-numbers li,
.category-archive-section nav .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-grid-section nav .page-numbers a,
.news-grid-section nav .page-numbers span,
.category-archive-section nav .page-numbers a,
.category-archive-section nav .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 999px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-heading);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.news-grid-section nav .page-numbers a:hover,
.news-grid-section nav .page-numbers a:focus,
.category-archive-section nav .page-numbers a:hover,
.category-archive-section nav .page-numbers a:focus {
  border-color: var(--color-primary);
  background-color: #fff;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.news-grid-section nav .page-numbers .current,
.category-archive-section nav .page-numbers .current {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}
.category-archive-header {
  padding: 160px 0 70px;
  background:
    linear-gradient(180deg, rgba(19, 29, 50, 0.96), rgba(19, 29, 50, 0.92));
}
.category-archive-kicker {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.category-archive-header .section-title,
.category-archive-header .category-archive-description,
.category-archive-header .category-archive-description p {
  color: #fff;
}
.category-archive-description {
  max-width: 680px;
  margin: 0 auto;
}
.category-archive-section {
  padding: 0 0 94px;
  background-color: #f3f2ee;
}
.search-results-section {
  min-height: 50vh;
  padding-top: 80px;
}
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-result-item {
  padding: 28px 32px;
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(55, 65, 81, 0.05);
}
.search-result-title {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.2;
}
.search-result-title a {
  color: var(--color-heading);
  transition: color 0.25s ease;
}
.search-result-title a:hover,
.search-result-title a:focus {
  color: var(--color-primary-dark);
}
.search-result-excerpt {
  max-width: 100%;
  margin-bottom: 14px;
}
.search-result-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.search-result-link:hover,
.search-result-link:focus {
  color: var(--color-heading);
}
.category-archive-section nav {
  margin-top: 52px;
}
.search-results-section .error-page-card {
  margin-top: 10px;
  background: #fff;
  border: 1px solid rgba(55, 65, 81, 0.08);
  box-shadow: 0 18px 40px rgba(55, 65, 81, 0.08);
}
.search-results-section .error-page-title {
  color: var(--color-heading);
}
.search-results-section .error-page-text {
  color: var(--color-body);
}
.videowrap{
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.videowrap iframe{
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.videowrap::after{
  content: "";
  display: block;
  padding-bottom: 56.2%;
}


@media (max-width: 767.98px) {
  .search-result-item {
    padding: 22px 20px;
    border-radius: 16px;
  }
  .search-result-title {
    font-size: 24px;
  }
}
.news-card {
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.06);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(55, 65, 81, 0.04);
}
.news-image-link {
  display: block;
}
.news-image {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  max-height: 250px;
}
.news-content {
  padding: 30px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.news-category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}
.news-date {
  font-size: 13px;
  color: rgba(75, 85, 99, 0.8);
}
.news-title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.45;
}
.news-excerpt {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.4;
}
.read-more-button {
  min-width: auto;
  padding: 0.7rem 1.3rem;
  font-size: 13px;
}
.subscribe-section {
  padding: 96px 0 104px;
  background-color: #fff;
}
.subscribe-copy {
  max-width: 640px;
  margin: 0 auto 28px;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.subscribe-form input {
  width: min(100%, 300px);
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(55, 65, 81, 0.16);
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  color: var(--color-heading);
}
.subscribe-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(131, 178, 150, 0.16);
}
.subscribe-form button {
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 10px;
  background-color: #131d32;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.25s ease;
}
.subscribe-form button:hover,
.subscribe-form button:focus {
  background-color: #0f1728;
}
.navbar-expand-lg .navbar-nav .menu-item{
  padding: 0 5px;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 0;
}
.navbar-expand-lg .navbar-nav .current-menu-item .nav-link{
  border-bottom: 2px solid var(--color-primary);
}

.video-section{
    padding: 82px 0 96px;    
    border-top: 1px solid rgba(75, 85, 99, 0.08);
}
.video-section .team-section-subtitle{
  max-width: 600px;
  margin: auto;
}
.video-section .videowrap{
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
}
.home .video-section{
  background-color: var(--color-bg-light);
}

.gallery-section {
  padding: 82px 0 96px;
  border-top: 1px solid rgba(75, 85, 99, 0.08);
  background-color: #fff;
}
.gallery-section .team-section-subtitle {
  max-width: 600px;
  margin: 0 auto 34px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.gallery-thumbnail {
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(55, 65, 81, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-thumbnail:hover,
.gallery-thumbnail:focus {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(55, 65, 81, 0.14);
}
.gallery-thumbnail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 18, 28, 0.88);
}
.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1100px, 100%);
}
.gallery-lightbox-content {
  width: 100%;
  text-align: center;
}
.gallery-lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background-color: #fff;
}
.gallery-lightbox-caption {
  min-height: 28px;
  margin: 16px 0 0;
  font-size: 16px;
  color: #fff;
}
.gallery-lightbox-caption.is-empty {
  visibility: hidden;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus {
  background-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}
.gallery-lightbox-close {
  position: absolute;
  top: -18px;
  right: -8px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}
.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  font-size: 26px;
}
body.gallery-lightbox-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .news-hero-section {
    min-height: 580px;
    max-height: none;
    padding: 136px 0 82px;
  }
  .latest-news-section {
    padding: 72px 0 52px;
  }
  .news-grid-section {
    padding: 48px 0 76px;
  }
  .category-archive-header {
    padding: 136px 0 60px;
  }
  .category-archive-section {
    padding-bottom: 76px;
  }
  .subscribe-section {
    padding: 76px 0 84px;
  }
  .featured-news-image {
    min-height: 300px;
  }
  .featured-news-content {
    max-width: none;
    padding-left: 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .news-hero-section {
    min-height: 520px;
    padding: 124px 0 68px;
  }
  .latest-news-section {
    padding: 60px 0 44px;
  }
  .news-grid-section {
    padding: 44px 0 64px;
  }
  .category-archive-header {
    padding: 124px 0 50px;
  }
  .category-archive-section {
    padding-bottom: 64px;
  }
  .subscribe-section {
    padding: 64px 0 72px;
  }
  .featured-news-image {
    min-height: 240px;
  }
  .featured-news-title {
    font-size: 30px;
  }
  .news-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    max-width: 320px;
  }
  .gallery-section {
    padding: 60px 0 72px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-lightbox {
    padding: 24px 12px;
  }
  .gallery-lightbox-dialog {
    gap: 10px;
  }
  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .gallery-lightbox-close {
    top: -14px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .gallery-lightbox-caption {
    font-size: 14px;
  }
}
/* ================================
NEWS DETAIL PAGE STYLES
================================ */
.news-single-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  max-height: 510px;
  padding: 150px 0 54px;
  background: url("../images/news-hero.jpg") center center / cover no-repeat;
}
.news-single-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 34, 0.84) 0%, rgba(10, 20, 35, 0.5) 42%, rgba(10, 20, 35, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 22, 35, 0.3), rgba(11, 22, 35, 0.54));
}
.news-single-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  color: #fff;
}
.news-single-hero .news-category {
  margin-bottom: 12px;
  color: var(--color-primary);
}
.news-single-hero .news-title {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}
.news-single-hero .news-excerpt {
  max-width: 100%;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.news-date-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-single-hero .news-date {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}
.news-date-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.92);
}
.news-date-icon svg {
  width: 18px;
  height: 18px;
}
.news-featured-image-section {
  padding: 64px 0 42px;
  background-color: #f3f2ee;
}
.news-featured-image {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(55, 65, 81, 0.08);
  height: 400px;
}
.news-single-content {
  padding: 0 0 28px;
  background-color: #f3f2ee;
}
.news-single-article {
  max-width: 750px;
  margin: 0 auto;
}
.news-single-article p {
  margin-bottom: 28px;
}
.news-single-article h2 {
  margin: 34px 0 22px;
  font-size: 36px;
  line-height: 1.2;
}
.news-single-article blockquote {
  margin: 52px 0 42px;
  padding: 18px 0 18px 22px;
  border-left: 4px solid rgba(117, 97, 80, 0.75);
}
.news-single-article blockquote p {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.65;
  font-style: italic;
  color: #2e2622;
}
.news-single-article blockquote cite {
  display: block;
  font-size: 15px;
  font-style: italic;
  color: rgba(46, 38, 34, 0.8);
}
.news-single-share {
  padding: 34px 0 38px;
  background-color: #f3f2ee;
  border-top: 1px solid rgba(55, 65, 81, 0.1);
}
.news-single-share h2 {
  margin-bottom: 18px;
  font-size: 18px;
  color: #1e1e1e;
}
.share-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.share-icon svg {
  width: 18px;
  height: 18px;
}
.share-icon:hover,
.share-icon:focus {
  transform: translateY(-1px);
  opacity: 0.9;
  color: #fff;
}
.share-icon.linkedin {
  background-color: #2563eb;
}
.share-icon.twitter {
  background-color: #60a5fa;
}
.share-icon.email {
  background-color: #8b7b6a;
}
.related-news-section {
  padding: 58px 0 92px;
  background-color: #fff;
}
.related-news-subtitle {
  max-width: 520px;
  margin: 0 auto 30px;
}
@media (max-width: 991.98px) {
  .news-single-hero {
    min-height: 480px;
    max-height: none;
    padding: 136px 0 48px;
  }
  .news-featured-image-section {
    padding-top: 56px;
  }
  .news-single-content {
    padding-bottom: 18px;
  }
  .related-news-section {
    padding: 52px 0 76px;
  }
}
@media (max-width: 767.98px) {
  .news-single-hero {
    min-height: 460px;
    padding: 124px 0 42px;
  }
  .news-single-hero .news-title {
    font-size: 34px;
  }
  .news-featured-image-section {
    padding: 44px 0 30px;
  }
  .news-single-article h2 {
    font-size: 30px;
  }
  .news-single-article blockquote {
    margin: 40px 0 34px;
    padding-left: 18px;
  }
  .news-single-article blockquote p {
    font-size: 18px;
  }
  .news-single-share {
    padding: 28px 0 32px;
  }
  .related-news-section {
    padding: 46px 0 64px;
  }
  h3{
    font-size: 24px;
    line-height: 30px;
  }
}
/* ================================
404 PAGE
================================ */
.error-page-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 160px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(131, 178, 150, 0.2), transparent 30%),
    linear-gradient(180deg, #131d32 0%, #1b2741 100%);
}
.error-page-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 29, 50, 0.3), rgba(19, 29, 50, 0.18));
}
.error-page-card {
  padding: 56px 42px;  
  border-radius: 28px;  
}
.error-page-code {
  margin-bottom: 10px;
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--color-primary);
}
.error-page-title {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 52px);
  color: #fff;
  letter-spacing: -0.04em;
}
.error-page-text {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
}
.error-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.error-secondary-btn {
  background-color: #fff;
  color: var(--color-heading);
}
.error-secondary-btn:hover,
.error-secondary-btn:focus,
.error-secondary-btn:active {
  background-color: #eef1eb !important;
  color: var(--color-heading);
}
.error-page-search {
  max-width: 520px;
  margin: 0 auto;
}
.error-page-search .search-form {
  display: flex;
  gap: 0;  
  justify-content: center;
}
.error-page-search .search-field {
  flex: 1 1 280px;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px 0 0 5px;
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--color-heading);
  height: 35px;
}
.error-page-search .search-submit {
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 0 5px 5px 0;
  background-color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.25s ease, transform 0.25s ease;
  height: 35px;
}
.error-page-search .search-submit:hover,
.error-page-search .search-submit:focus {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}
@media (max-width: 991.98px) {
  .error-page-section {
    padding: 136px 0 72px;
  }
  .error-page-card {
    padding: 44px 32px;
  }
}
@media (max-width: 767.98px) {
  .error-page-section {
    padding: 124px 0 64px;
  }
  .error-page-card {
    padding: 36px 22px;
    border-radius: 22px;
  }
  .error-page-actions {
    flex-direction: column;
  }
  .error-page-actions .custom-btn {
    width: 100%;
  }
  
}
