:root {
  --sidebar-width: 220px;
  --sidebar-hero-height: clamp(560px, calc(100vh - 24px), 680px);
  --green: #0b4e2d;
  --green-dark: #06351f;
  --blue: #0a4d8c;
  --ink: #092344;
  --muted: #5d6c7c;
  --soft: #f8fafc;
  --line: #d8e7e1;
  --shadow: 0 18px 45px rgba(5, 44, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
    margin: 0;
    color: #132238;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1030;
  width: var(--sidebar-width);
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 18% 84%,
      rgba(0, 169, 166, 0.28),
      transparent 24%
    ),
    linear-gradient(180deg, #074329 0%, #03291d 100%);
  box-shadow: 18px 0 35px rgba(0, 0, 0, 0.16);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

/* .tribal-panel {
  flex: 0 0 var(--sidebar-hero-height);
  width: var(--sidebar-width);
  min-height: var(--sidebar-hero-height);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 67%, rgba(3, 41, 29, 0.78) 100%),
    url("../images/StockCake-Vibrant_Tribal_Paint-1130183-medium.jpg") center
      center / cover;
} */

.tribal-panel{
    position:relative;
    flex:0 0 var(--sidebar-hero-height);
    width:100%;
    min-height:var(--sidebar-hero-height);
    overflow:hidden;
}

.tribal-slide{
    position:absolute;
    inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity .9s ease;
}

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

.tribal-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 65%,
        rgba(3,41,29,.78) 100%
    );
    z-index:2;
}

.tribal-dots{
    position:absolute;
    left:50%;
    bottom:15px;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:5;
}

.tribal-dots .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
    transition:.3s;
}

.tribal-dots .dot.active{
    background:#fff;
    transform:scale(1.35);
    box-shadow:0 0 10px rgba(255,255,255,.8);
}



.sidebar-content {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  gap: 15px;
  padding: 14px 15px 16px;
  background:
    radial-gradient(
      circle at 20% 95%,
      rgba(31, 180, 147, 0.38),
      transparent 30%
    ),
    linear-gradient(180deg, #063d28 0%, #032f22 56%, #043a2d 100%);
}

.side-nav {
  display: grid;
  gap: 7px;
}

.side-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.side-link i {
  display: inline-grid;
  width: 24px;
  min-width: 24px;
  place-items: center;
  font-size: 21px;
  text-align: center;
}

.side-link::before {
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 8px;
  background: #8fe7af;
  content: "";
  opacity: 0;
}

.side-link:hover,
.side-link.active {
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(35, 162, 86, 0.98),
    rgba(20, 120, 62, 0.98)
  );
  transform: translateX(3px);
}

.side-link:hover::before,
.side-link.active::before {
  opacity: 1;
}

.quick-contact {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: rgba(0, 51, 35, 0.24);
  backdrop-filter: blur(8px);
}

.quick-contact h6,
.stay-connected h6 {
  margin-bottom: 14px;
  color: #ffdf72;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-contact p {
  display: flex;
  gap: 12px;
  margin: 0 0 11px;
  font-size: 12px;
  line-height: 1.55;
}

.stay-connected {
  text-align: center;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.stay-connected .social-row {
  justify-content: center;
}

.social-row a {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  transition: 0.25s ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  background: #c6f0d9;
}

.sidebar-globe {
  flex: 0 0 160px;
  width: var(--sidebar-width);
  min-height: 160px;
  margin: 0 -15px;
  background:
    linear-gradient(
      180deg,
      #043a2d 0%,
      rgba(4, 58, 45, 0.72) 20%,
      rgba(3, 47, 34, 0.18) 48%,
      #03291d 100%
    ),
    radial-gradient(
      circle at 50% 72%,
      rgba(24, 141, 89, 0.18),
      rgba(3, 47, 34, 0.88) 76%
    ),
    url("../images/sidebar-globe.jpeg") center bottom / cover no-repeat;
  background-color: #03291d;
  border-top: 0;
}

.page-shell {
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  max-width: 100%;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 75%, #fff 100%);
}

.top-header {
  position: relative;
  z-index: 1015;
  padding: 12px 26px 10px;
  border-bottom: 1px solid #d8ece5;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.brand-row,
.utility-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-row {
  justify-content: space-between;
}

.brand-row h1 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #0a2643;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 600;
}

.top-coalition-logo {
  width: clamp(150px, 16vw, 220px);
  height: 72px;
  object-fit: contain;
  object-position: center right;
}

.utility-row {
  padding-top: 10px;
}

.icon-menu,
.round-btn {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #cce2d9;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 23px;
}

.search-box {
  flex: 0 1 350px;
  display: flex;
  align-items: center;
  width: min(350px, 48vw);
  height: 42px;
  padding: 0 12px 0 20px;
  border: 1px solid #d5dfe9;
  border-radius: 999px;
  background: #fff;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 13px;
}

.search-box button {
  border: 0;
  color: #082652;
  background: transparent;
  font-size: 20px;
}

.lang-btn {
  border: 0;
  color: #092344;
  background: transparent;
  font-weight: 600;
}

.header-socials {
  display: flex;
  gap: 13px;
  align-items: center;
}

.header-socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}

.facebook {
  background: #0b3f89;
}
.twitter {
  background: #1da1f2;
}
.linkedin {
  background: #0a66c2;
}
.youtube {
  background: #e30000;
}

.login-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0d6d3e, #06351f);
  box-shadow: 0 10px 22px rgba(11, 78, 45, 0.28);
  font-weight: 700;
  transition: 0.25s ease;
}

.login-btn:hover,
.primary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 78, 45, 0.34);
}

.hero-card,
.updates-section,
.content-section,
.split-section,
.partners-section {
  max-width: calc(100% - 48px);
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  height: 340px;
  min-height: 340px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #abcfc3;
  border-radius: 10px;
  background:
    linear-gradient(
      100deg,
      rgba(244, 252, 250, 0.96) 0%,
      rgba(239, 249, 246, 0.86) 58%,
      rgba(228, 244, 240, 0.75) 100%
    ),
    repeating-linear-gradient(
      175deg,
      transparent 0 20px,
      rgba(11, 78, 45, 0.05) 21px 22px
    );
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 0;
  padding: 32px 34px;
}

.hero-copy h2 {
  margin: 0 0 12px;
  color: #0b2950;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
}

.hero-copy h2 span {
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.hero-copy p {
  max-width: 690px;
  margin-bottom: 18px;
  color: #17283a;
  font-family: "Montserrat", sans-serif;
  line-height: 1.68;
}

.hero-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.earth-grid {
  position: absolute;
  top: 28px;
  right: 86px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 55% 45%,
      transparent 0 41%,
      rgba(255, 255, 255, 0.7) 42% 43%,
      transparent 44%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(81, 128, 50, 0.38) 0 6px,
      transparent 7px 13px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(32, 109, 82, 0.28) 0 5px,
      transparent 6px 14px
    ),
    radial-gradient(
      circle,
      rgba(133, 169, 63, 0.52),
      rgba(14, 97, 73, 0.2) 65%,
      transparent 67%
    );
  box-shadow: inset 0 0 0 2px rgba(38, 99, 67, 0.1);
  animation: floaty 5s ease-in-out infinite;
}

.people-chain {
  position: absolute;
  right: 52px;
  bottom: 55px;
  z-index: 2;
  display: flex;
  gap: 2px;
  color: #073d41;
  font-size: 54px;
}

.bird,
.leaf {
  position: absolute;
  z-index: 3;
  color: #096347;
}

.bird-one {
  top: 48px;
  left: 52px;
  transform: rotate(-26deg);
}
.bird-two {
  top: 72px;
  left: 90px;
  transform: rotate(-20deg) scale(0.75);
}
.left-leaf {
  left: 24px;
  bottom: 70px;
  font-size: 78px;
  opacity: 0.78;
}
.right-leaf {
  right: 20px;
  bottom: 90px;
  font-size: 86px;
  opacity: 0.9;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 17px;
  color: #092953;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2::before {
  position: absolute;
  inset: 1px auto 1px 0;
  width: 3px;
  border-radius: 8px;
  background: #15965b;
  content: "";
}

.section-heading a {
  color: #092953;
  font-size: 13px;
  font-weight: 700;
}

.section-heading.light h2,
.section-heading.light a {
  color: #fff;
}

.section-heading.light h2::before {
  background: #fff;
}

.updates-section {
  margin-top: 10px;
  padding: 18px 20px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #06305f, #075da5);
  box-shadow: 0 18px 36px rgba(10, 77, 140, 0.22);
}

.update-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  height: 138px;
  min-height: 138px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(4, 24, 55, 0.16);
  transition: 0.25s ease;
}

.update-card:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(4, 24, 55, 0.24);
}

.update-card img {
  width: 84px;
  height: 114px;
  border-radius: 9px;
  object-fit: cover;
}

.update-card > div {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

.update-card .badge {
  align-self: flex-start;
  margin-bottom: 7px;
  border-radius: 5px;
  font-size: 10px;
  text-transform: uppercase;
}

.badge-purple {
  color: #fff;
  background: #7c45a5;
}

.update-card h3 {
  display: -webkit-box;
  min-height: 54px;
  margin: 0 0 6px;
  overflow: hidden;
  color: #081f42;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.update-card time {
  margin-top: auto;
  color: #111;
  font-size: 11px;
}

.content-section,
.partners-section {
  padding-top: 28px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

.action-card {
  min-height: 270px;
  padding: 28px 22px 22px;
  border: 1px solid #d5dee8;
  border-radius: 10px;
  text-align: center;
  transition: 0.25s ease;
}

.action-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.action-card .icon-circle {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
}

.action-card.green {
  background: linear-gradient(180deg, #eef9f1, #fbfffb);
}
.action-card.blue {
  background: linear-gradient(180deg, #eef4ff, #fbfdff);
}
.action-card.orange {
  background: linear-gradient(180deg, #fff1e5, #fffdfb);
}
.action-card.violet {
  background: linear-gradient(180deg, #f5ecff, #fffaff);
}
.action-card.teal {
  background: linear-gradient(180deg, #e9faf6, #fbfffe);
}

.green .icon-circle {
  background: linear-gradient(135deg, #1b9a48, #0b6a39);
}
.blue .icon-circle {
  background: linear-gradient(135deg, #0c73d8, #064fa5);
}
.orange .icon-circle {
  background: linear-gradient(135deg, #ff9c28, #eb6615);
}
.violet .icon-circle {
  background: linear-gradient(135deg, #9c55bd, #6d35a7);
}
.teal .icon-circle {
  background: linear-gradient(135deg, #17b59b, #087d6a);
}

.action-card h3 {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.action-card.green h3 {
  color: #0c6e35;
}
.action-card.blue h3 {
  color: #0a4d8c;
}
.action-card.orange h3 {
  color: #d96516;
}
.action-card.violet h3 {
  color: #7138a3;
}
.action-card.teal h3 {
  color: #087966;
}

.action-card p {
  min-height: 76px;
  color: #111;
  font-size: 13px;
  line-height: 1.75;
}

.action-card a {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
}

.research-card,
.events-card {
  min-height: 280px;
  padding: 20px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 57, 94, 0.1);
}

.compact {
  margin-bottom: 16px;
}
.compact h2 {
  font-size: 17px;
}

.research-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}

.research-body img {
  width: 100%;
  height: 166px;
  border-radius: 12px;
  object-fit: cover;
}

.research-body h3 {
  margin-bottom: 17px;
  color: #0b3978;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.research-body p {
  color: #1b2836;
  line-height: 1.7;
}

.primary-btn.small {
  min-height: 38px;
  padding-inline: 20px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3dbe2;
}

.slider-dots .active {
  background: #1e9d56;
}

.event-list {
  display: grid;
  gap: 2px;
}

.event-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(10, 77, 140, 0.08);
  transition: 0.25s ease;
}

.event-item:hover {
  transform: translateX(5px);
  background: #f7fbff;
}

.date-box {
  display: grid;
  width: 54px;
  height: 68px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #16814d, #075330);
  text-transform: uppercase;
}

.date-box span {
  font-size: 12px;
  font-weight: 800;
}
.date-box strong {
  margin-top: -9px;
  font-size: 29px;
  line-height: 1;
}

.event-item h3 {
  margin: 0 0 8px;
  color: #0b3978;
  font-size: 14px;
  font-weight: 800;
}

.event-item p {
  margin: 0;
  color: #0f2438;
  font-size: 12px;
}
.event-item b {
  padding: 0 10px;
  color: #193d66;
}

.partner-logo {
  display: grid;
  height: 82px;
  place-items: center;
  border: 1px solid #d8e2e9;
  border-radius: 9px;
  color: #0b3978;
  background: #fff;
  box-shadow: 0 7px 18px rgba(20, 63, 97, 0.06);
  text-align: center;
}

.partner-logo-inner {
  display: grid;
  grid-template-columns: auto auto;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: calc(100% - 18px);
  height: 58px;
  padding: 8px 10px;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.05;
}

.partner-logo-inner i {
  font-size: 29px;
  line-height: 1;
}

.partner-logo-inner span {
  display: block;
  max-width: 96px;
  overflow-wrap: anywhere;
}

.unesco {
  color: #17396e;
  font-size: 20px;
}
.who {
  color: #168bcc;
  font-size: 13px;
}
.unep {
  grid-template-columns: 46px 1fr;
  color: #13a3dc;
  font-size: 10px;
  text-align: left;
}
.unep strong {
  font-size: 30px;
  line-height: 0.8;
}
.iucn {
  color: #0b6895;
  font-size: 29px;
}
.wwf {
  color: #111;
  font-size: 21px;
}
.teri {
  color: #f17100;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 800;
}
.more-logo {
  color: #0d2853;
  font-size: 34px;
}

.site-footer{
    margin-top:90px;
    padding:34px max(28px, calc((100% - 1220px) / 2)) 18px;
    color:#fff;
    background:#1C5637;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 70px;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:not(.social-row a),
.site-footer p {
  display: block;
  margin: 0 0 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer p i {
  margin-right: 12px;
}

.site-footer .social-row {
  gap: 10px;
  margin-top: 10px;
}

.site-footer .social-row a {
  width: 28px;
  height: 28px;
  color: var(--green);
  background: #fff;
  font-size: 14px;
}

.site-footer .social-row a:hover {
  color: #fff;
   background:#1C5637;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  align-items: center;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
  display: grid;
}

.mobile-menu {
  --bs-offcanvas-width: min(82vw, 300px);
  color: #fff;
  background: linear-gradient(180deg, #074329, #03291d);
}

.mobile-menu .offcanvas-header {
  min-height: 40px;
  padding: 10px 12px;
  background: #074329;
}

.mobile-menu .offcanvas-title {
  font-size: 13px;
  font-weight: 800;
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 8px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.mobile-tribal-panel {
  flex: 0 0 clamp(150px, 34vh, 260px);
  min-height: clamp(150px, 34vh, 260px);
  margin: 0 -8px 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(3, 41, 29, 0.82) 100%),
    url("../images/StockCake-Vibrant_Tribal_Paint-1130183-medium.jpg") center
      top / cover no-repeat;
}

.mobile-menu .side-nav {
  gap: 5px;
}

.mobile-menu .side-link {
  min-height: 36px;
  gap: 11px;
  padding-inline: 10px;
  font-size: 12px;
  border-radius: 6px;
}

.mobile-menu .side-link i {
  width: 20px;
  min-width: 20px;
  font-size: 16px;
}

.mobile-menu .quick-contact {
  margin-top: 12px;
  padding: 10px;
  border-radius: 7px;
}

.mobile-menu .quick-contact h6,
.mobile-menu .stay-connected h6 {
  margin-bottom: 8px;
  font-size: 10px;
}

.mobile-menu .quick-contact p {
  gap: 8px;
  margin-bottom: 6px;
  font-size: 10px;
  line-height: 1.45;
}

.mobile-menu .stay-connected {
  padding-bottom: 10px;
}

.mobile-menu .social-row {
  gap: 8px;
  justify-content: center;
}

.mobile-menu .social-row a {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.mobile-sidebar-globe {
  flex: 0 0 clamp(170px, 28vh, 240px);
  min-height: clamp(170px, 28vh, 240px);
  margin: -2px -8px 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 58, 45, 0.08) 0%,
      rgba(3, 47, 34, 0.28) 48%,
      rgba(3, 41, 29, 0.66) 100%
    ),
    radial-gradient(
      circle at 50% 72%,
      rgba(24, 141, 89, 0.08),
      rgba(3, 47, 34, 0.42) 76%
    ),
    url("../images/sidebar-globe.jpeg") center bottom / cover no-repeat;
}

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

/* ========== INITIATIVE CARDS WITH BLENDED IMAGES ========== */
.initiative-card {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  border-radius: 12px !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 110px !important;
  min-height: 110px !important;
  border: 1px solid rgba(26, 60, 40, 0.08);
}

.initiative-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  border-color: #1a3c28;
}

.initiative-content {
  display: flex;
  gap: 0;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Left side - Text (45%) */
.initiative-text {
  flex: 0 0 45%;
  padding: 0.1rem 0.1rem 0.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.initiative-text .badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.4rem;
  border-radius: 20px;
}
.initiative-text h3 {
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c28;
  margin: 0 !important;
  line-height: 1 !important;
}

/* Right side - Image (55%) */
.initiative-image {
  flex: 0 0 55%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.5s ease;
  align-self: stretch;
  height: 100%;
}

/* Hover effect - image zooms slightly */
.initiative-card:hover .initiative-image {
  transform: scale(1.04);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .initiative-card {
    height: 120px !important;
  }

  .initiative-text {
    flex: 0 0 50%;
    padding: 0.2rem 0.6rem;
  }

  .initiative-text h3 {
    font-size: 0.85rem;
  }

  .initiative-text .badge {
    font-size: 0.5rem;
    padding: 0.15rem 0.5rem;
  }

  .initiative-image {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .initiative-card {
    height: 120px !important;
  }

  .initiative-text {
    flex: 0 0 55%;
    padding: 0.6rem 0.6rem;
  }

  .initiative-text h3 {
    font-size: 0.7rem;
  }

  .initiative-text .badge {
    font-size: 0.45rem;
    padding: 0.05rem;
  }

  .initiative-image {
    flex: 0 0 45%;
  }
}

.initiative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.initiative-img-1 {
  background-image: url("../images/banners/image1.png") !important;
  min-height: auto !important;
  background-size: cover !important;
  background-position: center !important;
}
.initiative-img-2 {
  background-image: url("../images/banners/image2.png") !important;
  min-height: auto !important;
  background-size: cover !important;
  background-position: center !important;
}
.initiative-img-3 {
  background-image: url("../images/banners/image3.png") !important;
  min-height: auto !important;
  background-size: cover !important;
  background-position: center !important;
}
.initiative-img-4 {
  background-image: url("../images/banners/image4.png") !important;
  min-height: auto !important;
  background-size: cover !important;
  background-position: center !important;
}


/* Pages css */



/* ========== HERO SECTION - COMPACT ========== */

.page-hero {
        position: relative;
        padding: 0.5rem 0 0 0;
        /* background: linear-gradient(
          180deg,
          #fff8e1 0%,
          #ffecb3 30%,
          #ffe082 60%,
          #ffd54f 100%
        ); */
        min-height: 280px;
        display: flex;
        align-items: center;
        overflow: hidden;
      }





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

/* ========== WOODEN TEXT BLOCK TITLE ========== */

.page-hero .hero-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 900 !important;
        font-size: 3.5rem;
        color: #1a3c28;
        margin-bottom: 0;
        line-height: 1;
        letter-spacing: 0px;
        padding: 0;
        text-transform: uppercase;
        display: block;
      }

.page-hero .hero-subtitle {
        font-family: "Montserrat", sans-serif;
        font-weight: 800 !important;
        font-size: 3.5rem;
        color: #1a3c28;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-left: 8px;
      }

.page-hero .hero-text {
        color: #000000;
        font-weight: 600;
      }

.page-hero .hero-title::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(139, 90, 43, 0.05) 2px,
            transparent 4px
          ),
          repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(139, 90, 43, 0.03) 3px,
            transparent 6px
          );
        -webkit-background-clip: text;
        background-clip: text;
        pointer-events: none;
        z-index: 1;
        border-radius: 4px;
      }

/* ========== IMAGE ON RIGHT - STRAIGHT ========== */

/* .page-hero .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        overflow: hidden;
      } */
       .page-hero .hero-image-wrapper{
    position:absolute;
    right:0;
    top:0;
    width:33%;
    height:100%;
    overflow:hidden;
}

.page-hero .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

.page-hero .hero-image-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to right,
          rgba(248, 246, 240, 0.7) 0%,
          rgba(248, 246, 240, 0.1) 10%,
          rgba(248, 246, 240, 0) 20%
        );
        pointer-events: none;
      }

/* ========== CONTENT BOXES - WITH DARK HEADERS ========== */

.content-grid {
        padding: 1.5rem 0 0rem 0;
        background: #f8f6f0;
      }

.content-box {
        background: #f5f0eb;
        border-radius: 16px;
        padding: 0;
        height: 100% !important;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(138, 90, 51, 0.08);
        position: relative;
        overflow: hidden;
      }

/* ========== CUSTOM BORDER COLORS ========== */

.content-box.border-green {
        border-left: 3px solid #1a3c28;
        border-right: 3px solid #1a3c28;
        border-bottom: 3px solid #1a3c28;
        border-top: none;
      }

.content-box.border-blue {
        border-left: 3px solid #1a5276;
        border-right: 3px solid #1a5276;
        border-bottom: 3px solid #1a5276;
        border-top: none;
      }

.content-box.border-violet {
        border-left: 3px solid #6c3483;
        border-right: 3px solid #6c3483;
        border-bottom: 3px solid #6c3483;
        border-top: none;
      }

.content-box.border-red {
        border-left: 3px solid #8b1a1a;
        border-right: 3px solid #8b1a1a;
        border-bottom: 3px solid #8b1a1a;
        border-top: none;
      }

.content-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 35px rgba(138, 90, 51, 0.15);
      }

/* ========== DARK HEADER ========== */

.content-box .box-header {
        background: linear-gradient(135deg, #1a3c28 0%, #2a5c3e 100%);
        padding: 0.6rem 1rem; /* Changed from 1rem 1.5rem */
        display: flex;
        align-items: center;
        gap: 10px; /* Changed from 12px */
        border-bottom: 3px solid #8a5a33;
      }

.content-box .box-header .box-icon {
        width: 32px; /* Changed from 40px */
        height: 32px; /* Changed from 40px */
        border-radius: 8px; /* Changed from 10px */
        background: rgba(255, 255, 255, 0.15);
        color: #f5cba7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem; /* Changed from 1.2rem */
        flex-shrink: 0;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

.content-box .box-header h3 {
        font-family: "Montserrat", sans-serif; /* Changed from Playfair Display */
        font-weight: 800; /* Changed from 700 */
        font-size: 0.85rem; /* Slightly smaller to fit */
        color: #ffffff;
        margin: 0;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 1px; /* Add some spacing */
      }

/* ========== HEADER COLORS ========== */

.content-box.border-green .box-header {
        background: linear-gradient(135deg, #1a3c28 0%, #2a5c3e 100%);
        border-bottom-color: #1a3c28;
      }

.content-box.border-red .box-header {
        background: linear-gradient(135deg, #5c0e0e 0%, #8b1a1a 100%);
        border-bottom-color: #5c0e0e;
      }

.content-box.border-blue .box-header {
        background: linear-gradient(135deg, #1a5276 0%, #2471a3 100%);
        border-bottom-color: #1a5276;
      }

.content-box.border-violet .box-header {
        background: linear-gradient(135deg, #4a235a 0%, #6c3483 100%);
        border-bottom-color: #4a235a;
      }

.row.g-4 {
        display: flex;
        flex-wrap: wrap;
      }

.row.g-4 > [class*="col-"] {
        display: flex;
        flex-direction: column;
      }

.row.g-4 > [class*="col-"] .content-box {
        flex: 1;
      }

/* ========== BOX BODY ========== */

.content-box .box-body {
        padding: 0.5rem 1rem 0.8rem; /* Changed from 1.2rem 1.5rem 1.5rem */
        display: flex;
        flex-direction: column;
        gap: 0.2rem; /* Changed from 0.5rem */
      }

.content-box .box-body .point {
        display: flex;
        gap: 10px; /* Changed from 12px */
        align-items: flex-start;
        padding: 0.2rem 0; /* Changed from 0.5rem 0 */
        border-bottom: 1px solid rgba(138, 90, 51, 0.06);
      }

.content-box .box-body .point:last-child {
        border-bottom: none;
      }

/* ========== POINT ICON WITH IMAGE ========== */

.content-box .box-body .point .point-icon {
        flex-shrink: 0;
        width: 56px; /* Changed from 40px */
        height: 56px; /* Changed from 40px */
        border-radius: 0;
        overflow: hidden;
        border: none;
        margin-top: 2px;
      }

.content-box .box-body .point .point-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        display: block;
      }

.content-box .box-body .point .point-text {
        font-size: 0.78rem; /* Changed from 0.82rem */
        color: #444;
        line-height: 1.5; /* Changed from 1.6 */
      }

.content-box .box-body .point .point-text strong {
        color: #1a3c28;
      }

.footer-note {
        background: #1a3c28;
        color: white;
        padding: 1rem;
        border-radius: 16px;
        text-align: center;
        margin-top: 0.3rem;
      }

/* ========== FIXED INDEPENDENT SIDEBAR ========== */

.sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 220px !important;
        height: 100vh !important;
         overflow:hidden !important;
        z-index: 1030 !important;
        background: #1a3c28 !important;
        display: flex !important;
        flex-direction: column !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
      }

.sidebar::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
      }

.sidebar-content {
        padding: 0 !important;
        margin: 0 !important;
        flex: 1;
        overflow-y: visible;
      }

.page-shell {
        margin-left: 220px !important;
        min-height: 100vh;
      }

.top-header {
        /* The header is inside .page-shell, which already accounts for the
           fixed sidebar. Applying another 220px offset created the large
           blank gap on detail pages. */
        width: 100% !important;
        margin-left: 0 !important;
      }

/* ========== RESPONSIVE ========== */

@media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0 1rem 0;
          min-height: auto;
        }

        /* .page-hero .hero-title {
          font-size: 2.8rem;
        }

        .page-hero .hero-subtitle {
          font-size: 1.3rem;
        }

        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 250px;
          margin-top: 1rem;
        } */
         .page-hero .hero-image-wrapper{
    position:relative;
    width:100%;
    height:250px;
    margin-top:1rem;
}

.page-hero .hero-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-hero .hero-image-wrapper::after{
    display:none;
}

        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }

        .page-hero .hero-image-wrapper::after {
          display: none;
        }

        .page-hero .hero-text {
          max-width: 420px;
          font-size: 0.9rem;
          padding: 0.6rem 0.8rem;
        }

        /* .content-box {
          margin-bottom: 1.5rem;
        } */
         .content-box{
    padding:0;
    border-radius:16px;
}

        .page-shell {
          margin-left: 0 !important;
        }

        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */

        .sidebar {
          display: none !important;
        }
      }

@media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }

        .page-hero .hero-subtitle {
          font-size: 1rem;
        }

        .page-hero .hero-text {
          max-width: 400px;
          font-size: 0.85rem;
        }

        .content-box .box-header h3 {
          font-size: 1rem;
        }

        .content-box .box-body .point .point-text {
          font-size: 0.78rem;
        }

        .content-box {
          padding: 1rem;
          border-radius: 16px;
        }
      }

/* ===== reuse jeopardy styling with minor tweaks ===== */

.page-hero .hero-text {
        color: #000000;
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.6;
      }

.page-hero .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 34%;
        height: 100%;
        overflow: hidden;
      }

/* content grid */

.content-box {
        background: #f5f0eb;
        border-radius: 16px;
        padding: 0;
        height: 100% !important;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(138, 90, 51, 0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

/* border variants */

.content-box.border-orange {
        border-left: 3px solid #e8842a;
        border-right: 3px solid #e8842a;
        border-bottom: 3px solid #e8842a;
        border-top: none;
      }

.content-box .box-header {
        background: linear-gradient(135deg, #1a3c28 0%, #2a5c3e 100%);
        padding: 0.6rem 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 3px solid #8a5a33;
        flex-shrink: 0;
      }

.content-box .box-header .box-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
        color: #f5cba7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

.content-box .box-header h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 0.85rem;
        color: #ffffff;
        margin: 0;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

.content-box .box-body {
        padding: 0.5rem 1rem 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        flex: 1;
      }

.content-box .box-body .point {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 0.2rem 0;
        border-bottom: 1px solid rgba(138, 90, 51, 0.06);
      }

.content-box .box-body .point .point-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 0;
        overflow: hidden;
        border: none;
        margin-top: 2px;
      }

.content-box .box-body .point .point-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }

.content-box .box-body .point .point-text {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.5;
      }

.row.g-3 {
        display: flex;
        flex-wrap: wrap;
        margin-right: -0.5rem;
        margin-left: -0.5rem;
      }

.row.g-3 > [class*="col-"] {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
      }

/* conclusion line */

.conclusion-line {
        background: #1a3c28;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        margin: 0.3rem 0 0.1rem 0;
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.3px;
      }

.conclusion-line i {
        margin-right: 8px;
        color: #f5cba7;
      }

/* sidebar & shell */

.sidebar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
      }

.sidebar-content {
        padding: 0 !important;
        flex: 1;
        overflow-y: visible;
      }

@media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.3rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 250px;
          margin-top: 1rem;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
      }

@media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1rem;
        }
        .content-box .box-header h3 {
          font-size: 0.8rem;
        }
        .content-box .box-body .point .point-text {
          font-size: 0.75rem;
        }
      }

/* Section Heading Style */

.section-heading h2 {
        position: relative;
        margin: 0;
        padding-left: 17px;
        color: #092953;
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        border-left: 4px solid #1a3c28;
      }

.site-footer {
        margin-top: 90px;
        padding: 34px max(28px, calc((100% - 1220px) / 2)) 18px;
        color: #fff;
        background:
          radial-gradient(
            circle at 0 0,
            rgba(28, 139, 105, 0.45),
            transparent 28%
          ),
          linear-gradient(135deg, #05331f, #006450);
      }

.page-hero .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 33%;
        height: 100%;
        overflow: hidden;
      }

.content-box {
        background: #f5f0e8;
        border-radius: 16px;
        padding: 0;
        height: 100% !important;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(138, 90, 51, 0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

.content-box.border-brown {
        border-left: 3px solid #8b5a2b;
        border-right: 3px solid #8b5a2b;
        border-bottom: 3px solid #8b5a2b;
        border-top: none;
      }

.content-box.border-brown .box-header {
        background: linear-gradient(135deg, #6b4c2a 0%, #8b5a2b 100%);
        border-bottom-color: #6b4c2a;
      }

/* sidebar */

.sidebar::-webkit-scrollbar {
        display: none !important;
      }

/* big boxes with inline images */

.big-box-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

.big-box-row {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        flex-wrap: wrap;
      }

.big-box-row .text-part {
        flex: 2;
      }

.big-box-row .img-part {
        flex: 0 0 80px;
        text-align: right;
      }

.big-box-row .img-part img {
        max-width: 80px;
        height: auto;
        border-radius: 8px;
      }

.venn-wrapper {
        margin-top: 0.8rem;
        text-align: center;
      }

.venn-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        border: 2px solid rgba(138, 90, 51, 0.2);
      }

/* integration grid – 4 mini cards */

.mini-card {
        background: #f5f0eb;
        border-radius: 12px;
        padding: 0.5rem 0.8rem;
        border-left: 4px solid #1a3c28;
        display: flex;
        align-items: center;
        gap: 12px;
        height: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transition: 0.2s;
      }

.mini-card:hover {
        background: #eeeadf;
      }

.mini-card .mini-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
      }

.mini-card .mini-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

.mini-card .mini-text {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.4;
      }

.mini-card .mini-text strong {
        color: #1a3c28;
      }

.conclusion-line {
        background: #1a3c28;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        margin: 1.5rem 0 0.5rem 0;
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.3px;
      }

@media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.3rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 250px;
          margin-top: 1rem;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
        .big-box-row {
          flex-direction: column;
        }
        .big-box-row .img-part {
          flex: 1;
          text-align: left;
        }
      }

@media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1rem;
        }
        .content-box .box-header h3 {
          font-size: 0.8rem;
        }
        .mini-card {
          flex-wrap: wrap;
        }
      }

/* Center image between two boxes */

.center-image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0.5rem 0;
        position: relative;
        z-index: 2;
      }

.center-image-wrapper img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #f8f6f0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        background: #f8f6f0;
      }

.content-grid {
        padding: 1.5rem 0 0.2rem 0;
        background: #f8f6f0;
      }

.content-box .box-header .box-icon {
        width: 48px;
        height: 48px;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.15);
        color: #f5cba7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

.content-box .box-body .point {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 0.2rem 0;
        border-bottom: 1px solid rgba(138, 90, 51, 0.06);
      }

.content-box .box-body .point .point-text {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.5;
        flex: 1;
        font-weight: 500;
      }

.content-box .box-body .point .point-img {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #d0c8b8;
      }

.content-box .box-body .point .point-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

.conclusion-line {
        background: #1a3c28;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        margin: 0.5rem 0 0.2rem 0;
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.3px;
      }

@media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.3rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 250px;
          margin-top: 1rem;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
        .content-box .box-body .point {
          flex-wrap: wrap;
        }
        .content-box .box-body .point .point-img {
          width: 100%;
          height: auto;
          max-height: 120px;
          margin-top: 4px;
        }
      }

.site-footer {
        margin-top: 20px; /* Changed from 90px */
        padding: 34px max(28px, calc((100% - 1220px) / 2)) 18px;
        color: #fff;
        background:
          radial-gradient(
            circle at 0 0,
            rgba(28, 139, 105, 0.45),
            transparent 28%
          ),
          linear-gradient(135deg, #05331f, #006450);
      }


.search-box {
        flex: 0 1 350px;
        display: flex;
        align-items: center;
        width: min(350px, 48vw);
        height: 42px;
        padding: 0 12px 0 20px;
        border: 1px solid #d5dfe9;
        border-radius: 999px;
        background: #fff;
      }

.dropdown {
        margin-left: auto;
      }

.utility-row {
        display: flex;
        align-items: center;
        gap: 18px;
        width: 100%;
      }

@media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1rem;
        }
        .content-box .box-header h3 {
          font-size: 0.8rem;
        }
      }

/* HEADER SHORTCUTS */

.header-shortcuts{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:18px;
}

/* Circle */

.shortcut-item{
    position:relative;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#fff;
    border:2px solid #d7e8df;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 5px 16px rgba(0,0,0,.08);
}

/* Logo */

.shortcut-logo{
    width:54px;
    height:54px;
    object-fit:contain;
    transition:.35s;
}

/* Hover */

.shortcut-item:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.shortcut-item:hover .shortcut-logo{
    transform:scale(1.12);
}

/* Tooltip */

.shortcut-item::after{

    content:attr(data-title);

    position:absolute;

    bottom:-42px;

    left:50%;

    transform:translateX(-50%);

    background:#0b4e2d;

    color:#fff;

    padding:7px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    pointer-events:none;
}

.shortcut-item:hover::after{

    bottom:-48px;

    opacity:1;

    visibility:visible;
}

/* Hover Border */

.south-asia:hover{
    border-color:#14a76c;
}

.centre:hover{
    border-color:#0d6efd;
}

.coalition:hover{
    border-color:#f59e0b;
}

/* Responsive */

@media(max-width:1400px){

    .header-shortcuts{
        display:none;
    }

}

.site-footer{
    margin-top:90px;
    padding:34px max(28px, calc((100% - 1220px) / 2)) 18px;
    color:#fff;
    background:#1a3c28 !important;
}
.tribal-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:55px;
    z-index:4;
    color:#fff;
}

.tribal-badge{
    display:inline-block;
    padding:5px 12px;
    margin-bottom:10px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(6px);
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.tribal-content h3{
    margin:0 0 10px;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
}

.tribal-content p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,.92);
}

.tribal-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    padding:10px 18px;
    border-radius:30px;
    background:#1c8b69;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.tribal-btn:hover{
    background:#167455;
    color:#fff;
    transform:translateY(-2px);
}

/* new 3 pages css */

.page-hero {
        position: relative;
        padding: 1rem 0 0 0;
        background: linear-gradient(
          180deg,
          #e8f5e9 0%,
          #c8e6c9 30%,
          #a5d6a7 60%,
          #81c784 100%
        );
        min-height: 280px;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .page-hero .container {
        position: relative;
        z-index: 2;
      }
      .page-hero .hero-title {
        font-family: "Playfair Display", serif;
        font-weight: 900 !important;
        font-size: 3.5rem;
        margin-top: -0.8rem;
        color: #1a3c28;
        margin-bottom: 0;
        line-height: 1;
        letter-spacing: 0px;
        padding: 0;
        text-transform: uppercase;
        display: block;
      }
      .page-hero .hero-subtitle {
        font-family: "Poppins", sans-serif;
        font-weight: 800 !important;
        font-size: 3.5rem;
        color: #1a3c28;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-left: 8px;
        display: inline-block;
      }
      .page-hero .hero-text {
        color: #000000;
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.6;
         margin-top: 0.8rem;
      }
      .page-hero .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        overflow: hidden;
      }
      .page-hero .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .page-hero .hero-image-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to right,
          rgba(232, 245, 233, 0.7) 0%,
          rgba(232, 245, 233, 0.1) 10%,
          rgba(232, 245, 233, 0) 20%
        );
        pointer-events: none;
      }
      .hero-badge {
        display: inline-block;
        background: rgba(245, 203, 167, 0.15);
        border: 1px solid rgba(245, 203, 167, 0.3);
        color: #f5cba7;
        padding: 0.3rem 1.2rem;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 0.8rem;
      }

      /* ===== CONTENT ===== */
      .content-grid {
        padding: 2rem 0 0rem 0;
        background: #f8f6f0;
      }

      /* ===== VISION / MISSION / GOAL ===== */
      .vm-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem 1.8rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-top: 4px solid #1a3c28;
border-right: 4px solid #1a3c28;
        border-left: 4px solid #1a3c28;
        border-bottom: 4px solid #1a3c28;

        position: relative;
        overflow: hidden;
      }
      .vm-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: radial-gradient(
          circle,
          rgba(26, 60, 40, 0.04) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }
      .vm-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      }
      .vm-card .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1a3c28, #2a5c3e);
      }
      .vm-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: #1a3c28;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
      }
      .vm-card p {
        font-size: 0.85rem;
        color: #444;
        line-height: 1.7;
        margin-bottom: 0;
      }
      .vm-card.gold {
        border-top-color: #b8860b;
                border-bottom-color: #b8860b;
        border-right-color: #b8860b;
        border-left-color: #b8860b;

      }
      .vm-card.gold .card-icon {
        background: linear-gradient(135deg, #b8860b, #d4a017);
      }
      .vm-card.blue {
        border-top-color: #1a5276;

        border-bottom-color: #1a5276;
        border-right-color: #1a5276;
        border-left-color: #1a5276;
    }
      .vm-card.blue .card-icon {
        background: linear-gradient(135deg, #1a5276, #2471a3);
      }

      /* ===== OBJECTIVES ===== */
      .objectives-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
      }
      .objective-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 0.8rem 1rem;
        background: #ffffff;
        border-radius: 10px;
        border-left: 3px solid #1a3c28;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
      }
      .objective-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-left-color: #b8860b;
      }
      .objective-item .num {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #1a3c28, #2a5c3e);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 800;
      }
      .objective-item p {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.5;
        margin: 0;
      }
      .objective-item p strong {
        color: #1a3c28;
      }

      /* ===== PILLARS ===== */
      .pillar-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 1.2rem 1.2rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-bottom: 4px solid #1a3c28;
        position: relative;
        overflow: hidden;
        text-align: center;
      }
      .pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      }
      .pillar-card .pillar-num {
        display: inline-block;
        background: rgba(26, 60, 40, 0.08);
        color: #1a3c28;
        font-weight: 900;
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
        border-radius: 50px;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
      }
      .pillar-card .pillar-icon {
        font-size: 2.2rem;
        color: #1a3c28;
        margin-bottom: 0.5rem;
        display: block;
      }
      .pillar-card h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #1a3c28;
        margin-bottom: 0.3rem;
      }
      .pillar-card p {
        font-size: 0.75rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
      }
      .pillar-card.gold {
        border-bottom-color: #b8860b;
      }
      .pillar-card.gold .pillar-icon {
        color: #b8860b;
      }
      .pillar-card.gold .pillar-num {
        background: rgba(184, 134, 11, 0.1);
        color: #b8860b;
      }
      .pillar-card.blue {
        border-bottom-color: #1a5276;
      }
      .pillar-card.blue .pillar-icon {
        color: #1a5276;
      }
      .pillar-card.blue .pillar-num {
        background: rgba(26, 82, 118, 0.1);
        color: #1a5276;
      }
      .pillar-card.violet {
        border-bottom-color: #6c3483;
      }
      .pillar-card.violet .pillar-icon {
        color: #6c3483;
      }
      .pillar-card.violet .pillar-num {
        background: rgba(108, 52, 131, 0.1);
        color: #6c3483;
      }
      .pillar-card.teal {
        border-bottom-color: #087966;
      }
      .pillar-card.teal .pillar-icon {
        color: #087966;
      }
      .pillar-card.teal .pillar-num {
        background: rgba(8, 121, 102, 0.1);
        color: #087966;
      }
      .pillar-card.orange {
        border-bottom-color: #e8842a;
      }
      .pillar-card.orange .pillar-icon {
        color: #e8842a;
      }
      .pillar-card.orange .pillar-num {
        background: rgba(232, 132, 42, 0.1);
        color: #e8842a;
      }

      /* ===== ORGANOGRAM ===== */
      .org-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 1.2rem 1.5rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-left: 4px solid #1a3c28;
        display: flex;
        flex-direction: column;
      }
      .org-card:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      }
      .org-card .org-icon {
        font-size: 1.8rem;
        color: #1a3c28;
        margin-bottom: 0.3rem;
      }
      .org-card h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
        color: #1a3c28;
        margin-bottom: 0.2rem;
      }
      .org-card p {
        font-size: 0.78rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
      }
      .org-card.violet {
        border-left-color: #6c3483;
      }
      .org-card.violet .org-icon {
        color: #6c3483;
      }
      .org-card.blue {
        border-left-color: #1a5276;
      }
      .org-card.blue .org-icon {
        color: #1a5276;
      }
      .org-card.gold {
        border-left-color: #b8860b;
      }
      .org-card.gold .org-icon {
        color: #b8860b;
      }
      .org-card.teal {
        border-left-color: #087966;
      }
      .org-card.teal .org-icon {
        color: #087966;
      }
      .org-card.orange {
        border-left-color: #e8842a;
      }
      .org-card.orange .org-icon {
        color: #e8842a;
      }

      /* ===== WORKING GROUPS ===== */
      .wg-tag {
        display: inline-block;
        background: rgba(26, 60, 40, 0.08);
        color: #1a3c28;
        padding: 0.4rem 1.2rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        margin: 0.2rem;
        border: 1px solid rgba(26, 60, 40, 0.1);
        transition: all 0.3s ease;
      }
      .wg-tag:hover {
        background: #1a3c28;
        color: #fff;
        transform: translateY(-2px);
        border-color: #1a3c28;
      }

      /* ===== LEGAL STATUS ===== */
      .legal-box {
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-radius: 16px;
        padding: 1.8rem 2rem;
        color: #fff;
        border-left: 4px solid #f5cba7;
        position: relative;
        overflow: hidden;
      }
      .legal-box::before {
        content: "⚖️";
        position: absolute;
        right: 20px;
        bottom: 10px;
        font-size: 4rem;
        opacity: 0.1;
      }
      .legal-box h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        color: #f5cba7;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
      }
      .legal-box p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        margin: 0;
      }
      .legal-box strong {
        color: #fff;
      }

      /* ===== SIDEBAR ===== */
      .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 220px !important;
        height: 100vh !important;
        /* overflow-y: auto !important; */
        z-index: 1030 !important;
        background: #1a3c28 !important;
        display: flex !important;
        flex-direction: column !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
      }
      .sidebar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
      }
      .sidebar-content {
        padding: 0 !important;
        flex: 1;
        overflow-y: visible;
      }
      .page-shell {
        margin-left: 220px !important;
        min-height: 100vh;
      }
      /* .top-header-11 {
        width: calc(100% - 220px) !important;
        margin-left: 220px !important;
      } */

      @media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 200px;
          margin-top: 1rem;
          opacity: 1;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header-11 {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
        .objectives-grid {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 0.9rem;
        }
        .vm-card {
          padding: 1rem 1.2rem;
        }
        .org-card {
          padding: 1rem 1.2rem;
        }
        .legal-box {
          padding: 1.2rem 1.2rem;
        }
      }

      .section-heading h2 {
        position: relative;
        margin: 0;
        padding-left: 17px;
        color: #092953;
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        border-left: 4px solid #1a3c28;
      }
      .site-footer {
        margin-top: 90px;
        padding: 34px max(28px, calc((100% - 1220px) / 2)) 18px;
        color: #fff;
        background:
          radial-gradient(
            circle at 0 0,
            rgba(28, 139, 105, 0.45),
            transparent 28%
          ),
          linear-gradient(135deg, #05331f, #006450);
      }

        /* ===== HERO ===== */
      .page-hero {
        position: relative;
        padding: 0.5rem 0 0 0;
        background: linear-gradient(
          180deg,
          #1a1a2e 0%,
          #16213e 30%,
          #0f3460 60%,
          #1a3c28 100%
        );
        min-height: 320px;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .page-hero .hero-title {
        font-family: "Playfair Display", serif;
        font-weight: 900 !important;
        font-size: 3.8rem;
        color: #ffffff;
        margin-bottom: 0;
        line-height: 1;
        letter-spacing: 0px;
        padding: 0;
        text-transform: uppercase;
        display: block;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      }
      .page-hero .hero-title span {
        color: #1a3c28;
      }
      .page-hero .hero-subtitle {
        font-family: "Poppins", sans-serif;
        font-weight: 300 !important;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-top: 0.5rem;
        display: block;
      }
      .page-hero .hero-text {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 400;
        font-size: 0.95rem;
        line-height: 1.8;
        max-width: 95%;
      }
      .page-hero .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 38%;
        height: 100%;
        overflow: hidden;
        opacity: 0.6;
      }
      .page-hero .hero-image-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to right,
          rgba(26, 26, 46, 0.9) 0%,
          rgba(26, 26, 46, 0.3) 30%,
          rgba(26, 26, 46, 0) 60%
        );
        pointer-events: none;
      }

      /* ===== CONTENT ===== */

      /* ===== VISION / MISSION / GOAL ===== */
      .vision-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem 1.8rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-top: 4px solid #1a3c28;
        position: relative;
        overflow: hidden;
      }
      .vision-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: radial-gradient(
          circle,
          rgba(26, 60, 40, 0.04) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }
      .vision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      }
      .vision-card .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1a3c28, #2a5c3e);
      }
      .vision-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: #1a3c28;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
      }
      .vision-card p {
        font-size: 0.85rem;
        color: #444;
        line-height: 1.7;
        margin-bottom: 0;
      }
      .vision-card.gold {
        border-top-color: #b8860b;
      }
      .vision-card.gold .card-icon {
        background: linear-gradient(135deg, #b8860b, #d4a017);
      }
      .vision-card.blue {
        border-top-color: #1a5276;
      }
      .vision-card.blue .card-icon {
        background: linear-gradient(135deg, #1a5276, #2471a3);
      }

      /* ===== OBJECTIVES ===== */

      /* ===== PILLARS ===== */

      /* ===== GOVERNANCE ===== */
      .gov-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 1.2rem 1.5rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-left: 4px solid #1a3c28;
        display: flex;
        flex-direction: column;
      }
      .gov-card:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      }
      .gov-card .gov-icon {
        font-size: 1.8rem;
        color: #1a3c28;
        margin-bottom: 0.3rem;
      }
      .gov-card h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
        color: #1a3c28;
        margin-bottom: 0.2rem;
      }
      .gov-card p {
        font-size: 0.78rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
      }
      .gov-card.violet {
        border-left-color: #6c3483;
      }
      .gov-card.violet .gov-icon {
        color: #6c3483;
      }
      .gov-card.blue {
        border-left-color: #1a5276;
      }
      .gov-card.blue .gov-icon {
        color: #1a5276;
      }
      .gov-card.gold {
        border-left-color: #b8860b;
      }
      .gov-card.gold .gov-icon {
        color: #b8860b;
      }
      .gov-card.teal {
        border-left-color: #087966;
      }
      .gov-card.teal .gov-icon {
        color: #087966;
      }
      .gov-card.orange {
        border-left-color: #e8842a;
      }
      .gov-card.orange .gov-icon {
        color: #e8842a;
      }

      /* ===== WORKING GROUPS ===== */
      .wg-tag {
        display: inline-block;
        background: rgba(26, 60, 40, 0.08);
        color: #1a3c28;
        padding: 0.3rem 1rem;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 600;
        margin: 0.15rem;
        border: 1px solid rgba(26, 60, 40, 0.1);
        transition: all 0.3s ease;
      }
      .wg-tag:hover {
        background: #1a3c28;
        color: #fff;
        transform: translateY(-2px);
      }

      /* ===== LEGAL STATUS ===== */

      /* ===== SIDEBAR ===== */
      /* .top-header {
        width: calc(100% - 220px) !important;
        /* margin-left: 220px !important; */
      } */

      @media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 200px;
          margin-top: 1rem;
          opacity: 1;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
        .objectives-grid {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 0.9rem;
        }
        .vision-card {
          padding: 1rem 1.2rem;
        }
        .gov-card {
          padding: 1rem 1.2rem;
        }
        .legal-box {
          padding: 1.2rem 1.2rem;
        }
      }



      
      /* ===== reuse right-based conservation styling ===== */
      .page-hero {
        position: relative;
        padding: 0.5rem 0 0 0;
        background: linear-gradient(
          180deg,
          #e8f5e9 0%,
          #c8e6c9 30%,
          #a5d6a7 60%,
          #81c784 100%
        );
        min-height: 280px;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .page-hero .hero-subtitle {
        font-family: "Poppins", sans-serif;
        font-weight: 800 !important;
        font-size: 3.5rem;
        color: #1a3c28;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-left: 8px;
        display: block;
      }
      .page-hero .hero-text {
        color: #1a3c28;
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.6;
      }

      /* content grid */
      .content-grid {
        padding: 1.5rem 0 0rem 0;
        background: #f8f6f0;
      }
      .content-box {
        background: #f5f0eb;
        border-radius: 16px;
        padding: 0;
        height: 100% !important;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(138, 90, 51, 0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .content-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 35px rgba(138, 90, 51, 0.15);
      }
      /* border variants */
      .content-box.border-green {
        border-left: 3px solid #1a3c28;
        border-right: 3px solid #1a3c28;
        border-bottom: 3px solid #1a3c28;
        border-top: none;
      }
      .content-box.border-blue {
        border-left: 3px solid #1a5276;
        border-right: 3px solid #1a5276;
        border-bottom: 3px solid #1a5276;
        border-top: none;
      }
      .content-box.border-violet {
        border-left: 3px solid #6c3483;
        border-right: 3px solid #6c3483;
        border-bottom: 3px solid #6c3483;
        border-top: none;
      }
      .content-box.border-orange {
        border-left: 3px solid #e8842a;
        border-right: 3px solid #e8842a;
        border-bottom: 3px solid #e8842a;
        border-top: none;
      }
      .content-box.border-teal {
        border-left: 3px solid #087966;
        border-right: 3px solid #087966;
        border-bottom: 3px solid #087966;
        border-top: none;
      }
      .content-box.border-gold {
        border-left: 3px solid #b8860b;
        border-right: 3px solid #b8860b;
        border-bottom: 3px solid #b8860b;
        border-top: none;
      }

      .content-box .box-header {
        background: linear-gradient(135deg, #1a3c28 0%, #2a5c3e 100%);
        padding: 0.6rem 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 3px solid #8a5a33;
        flex-shrink: 0;
      }
      .content-box.border-teal .box-header {
        background: linear-gradient(135deg, #087966 0%, #17b59b 100%);
        border-bottom-color: #087966;
      }
      .content-box.border-gold .box-header {
        background: linear-gradient(135deg, #8b6914 0%, #b8860b 100%);
        border-bottom-color: #8b6914;
      }
      .content-box.border-blue .box-header {
        background: linear-gradient(135deg, #1a5276 0%, #2471a3 100%);
        border-bottom-color: #1a5276;
      }
      .content-box.border-violet .box-header {
        background: linear-gradient(135deg, #4a235a 0%, #6c3483 100%);
        border-bottom-color: #4a235a;
      }

      .content-box .box-header .box-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
        color: #f5cba7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .content-box .box-header h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 0.85rem;
        color: #ffffff;
        margin: 0;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .content-box .box-body {
        padding: 0.5rem 1rem 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        flex: 1;
      }
      .content-box .box-body .point {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 0.2rem 0;
        border-bottom: 1px solid rgba(138, 90, 51, 0.06);
      }
      .content-box .box-body .point:last-child {
        border-bottom: none;
      }
      .content-box .box-body .point .point-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 0;
        overflow: hidden;
        border: none;
        margin-top: 2px;
      }
      .content-box .box-body .point .point-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }
      .content-box .box-body .point .point-text {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.5;
      }
      .content-box .box-body .point .point-text strong {
        color: #1a3c28;
      }
      .row.g-4 {
        display: flex;
        flex-wrap: wrap;
      }
      .row.g-3 {
        display: flex;
        flex-wrap: wrap;
        margin-right: -0.5rem;
        margin-left: -0.5rem;
      }
      .row.g-3 > [class*="col-"] {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
      }
      .row.g-4 > [class*="col-"] {
        display: flex;
        flex-direction: column;
      }
      .row.g-4 > [class*="col-"] .content-box {
        flex: 1;
      }

      /* conclusion line */
      .conclusion-line {
        background: #1a3c28;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        text-align: center;
        margin: 0.3rem 0 0.1rem 0;
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.3px;
      }
      .conclusion-line i {
        margin-right: 8px;
        color: #f5cba7;
      }

      /* sidebar & shell */
      /* .top-header-11 {
        width: 100% !important;
        margin-left: 0 !important;
      } */

      @media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.8rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 250px;
          margin-top: 1rem;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header-11 {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
      }
      @media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.4rem;
        }
        .content-box .box-header h3 {
          font-size: 0.8rem;
        }
        .content-box .box-body .point .point-text {
          font-size: 0.75rem;
        }
      }
      /* Section Heading Style */

      /* Background section big text */
      .background-text-box {
        background: #f5f0eb;
        border-radius: 16px;
        padding: 1.5rem 2rem;
        border-left: 4px solid #1a3c28;
        border-right: 4px solid #1a3c28;
        border-bottom: 4px solid #1a3c28;
        border-top: 4px solid #1a3c28;
        font-size: 0.95rem;
        line-height: 1.8;
        color: #2d2d2d;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
      }
      .background-text-box strong {
        color: #1a3c28;
      }
      .background-text-box .highlight {
        background: rgba(26, 60, 40, 0.08);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-weight: 600;
        color: #1a3c28;
      }
   .strategic-link{
    display:block;
    height:100%;
    text-decoration:none;
    color:inherit;
}

.strategic-link:hover{
    text-decoration:none;
    color:inherit;
}

.strategic-link:hover .strategic-card{
    transform:translateY(-6px);
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}
.page-hero {
        position: relative;
        padding: 0.5rem 0 0 0;
        background: linear-gradient(
          180deg,
          #e3f2fd 0%,
          #bbdefb 30%,
          #90caf9 60%,
          #64b5f6 100%
        );
        min-height: 280px;
        display: flex;
        overflow: hidden;
      }
      .page-hero .hero-title {
        font-family: "Montserrat", serif;
        font-weight: 900 !important;
        font-size: 3rem;
        margin-top: 3.5rem;
        color: #1a3c28;
        margin-bottom: 20px;
        margin-right: 5px;
        line-height: 1;
        letter-spacing: 0px;
        padding: 0;
        text-transform: uppercase;
        display: inline-block;
      }
      .page-hero .hero-subtitle {
        font-family: "Montserrat", sans-serif;
        font-weight: 800 !important;
        font-size: 3rem;
        color: #1a3c28;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-left: 5px;
        display: inline-block;
        vertical-align: bottom;
      }
      .page-hero .hero-text {
        color: #000000;
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-top: 20px;
      }

      /* ===== CONTENT ===== */

      /* ===== FORM STYLES ===== */
      .form-section {
        background: #ffffff;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        margin-bottom: 1.5rem;
      }
      .form-section .section-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        color: #1a3c28;
        margin-bottom: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #1a3c28;
        display: inline-block;
      }
      .form-section .section-title .num {
        display: inline-block;
        background: #1a3c28;
        color: #fff;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        text-align: center;
        line-height: 28px;
        font-size: 0.8rem;
        margin-right: 10px;
      }
      .form-control,
      .form-select {
        border-radius: 10px;
        border: 1px solid #dce5e0;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        background: #fafbfa;
        transition: all 0.3s ease;
      }
      .form-control:focus,
      .form-select:focus {
        border-color: #1a3c28;
        box-shadow: 0 0 0 0.2rem rgba(26, 60, 40, 0.15);
        background: #ffffff;
      }
      .form-label {
        font-weight: 600;
        font-size: 0.8rem;
        color: #333;
        margin-bottom: 0.3rem;
      }

      /* ===== ENGAGEMENT CARDS ===== */
      .engagement-card {
        border: 2px solid #e8edea;
        border-radius: 12px;
        padding: 1rem 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fafbfa;
        display: flex;
        align-items: center;
        gap: 12px;
        height: 100%;
      }
      .engagement-card:hover {
        border-color: #1a3c28;
        background: #f0f5f2;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(26, 60, 40, 0.1);
      }
      .engagement-card.selected {
        border-color: #1a3c28;
        background: #e8f5e9;
        box-shadow: 0 4px 15px rgba(26, 60, 40, 0.15);
      }
      .engagement-card .card-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background: rgba(26, 60, 40, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #1a3c28;
        flex-shrink: 0;
      }
      .engagement-card .card-content h6 {
        font-weight: 700;
        font-size: 0.85rem;
        color: #1a3c28;
        margin: 0;
      }
      .engagement-card .card-content p {
        font-size: 0.7rem;
        color: #666;
        margin: 0;
        line-height: 1.3;
      }
      .engagement-card input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #1a3c28;
        flex-shrink: 0;
        cursor: pointer;
      }

      /* ===== RIGHT SIDEBAR CARDS ===== */
      .right-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        margin-bottom: 1.2rem;
        transition: all 0.3s ease;
        border-left: 4px solid #1a3c28;
      }
      .right-card:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      }
      .right-card.gold {
        border-left-color: #b8860b;
      }
      .right-card.violet {
        border-left-color: #6c3483;
      }
      .right-card h5 {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
        color: #1a3c28;
        margin-bottom: 0.8rem;
      }
      .right-card .benefit-item {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      }
      .right-card .benefit-item:last-child {
        border-bottom: none;
      }
      .right-card .benefit-item .icon {
        color: #1a3c28;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .right-card .benefit-item .text {
        font-size: 0.78rem;
        color: #444;
        line-height: 1.4;
      }
      .right-card .benefit-item .text strong {
        color: #1a3c28;
      }

      .right-card .quote-text {
        font-family: "Montserrat", serif;
        font-size: 1.1rem;
        color: #1a3c28;
        font-style: italic;
        line-height: 1.6;
        text-align: center;
        padding: 0.5rem 0;
      }
      .right-card .contact-info {
        font-size: 0.85rem;
        color: #444;
        line-height: 1.8;
      }
      .right-card .contact-info i {
        color: #1a3c28;
        width: 24px;
        margin-right: 8px;
      }
      .right-card .btn-contact {
        display: inline-block;
        background: #1a3c28;
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
      }
      .right-card .btn-contact:hover {
        background: #2a5c3e;
        color: #fff;
        transform: translateX(3px);
      }

      /* ===== SUBMIT BUTTONS ===== */
      .btn-submit {
        background: linear-gradient(135deg, #1a3c28, #2a5c3e);
        color: #fff;
        padding: 0.7rem 2.5rem;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.9rem;
        border: none;
        transition: all 0.3s ease;
      }
      .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(26, 60, 40, 0.3);
        color: #fff;
      }
      .btn-reset {
        background: #e8edea;
        color: #333;
        padding: 0.7rem 2.5rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
        transition: all 0.3s ease;
      }
      .btn-reset:hover {
        background: #d5ddd8;
        transform: translateY(-3px);
      }

      /* ===== SIDEBAR ===== */

      @media (max-width: 991px) {
        .page-hero {
          padding: 1rem 0;
          min-height: auto;
        }
        .page-hero .hero-title {
          font-size: 2.8rem;
        }
        .page-hero .hero-subtitle {
          font-size: 2.2rem;
        }
        .page-hero .hero-image-wrapper {
          position: relative;
          width: 100%;
          height: 200px;
          margin-top: 1rem;
        }
        .page-hero .hero-image-wrapper img {
          border-radius: 12px;
        }
        .page-hero .hero-image-wrapper::after {
          display: none;
        }
        .page-shell {
          margin-left: 0 !important;
        }
        /* .top-header {
          width: 100% !important;
          margin-left: 0 !important;
        } */
        .sidebar {
          display: none !important;
        }
        .form-section {
          padding: 1.2rem;
        }
      }
      @media (max-width: 768px) {
        .page-hero .hero-title {
          font-size: 2.2rem;
        }
        .page-hero .hero-subtitle {
          font-size: 1.8rem;
        }
        .right-card {
          padding: 1rem;
        }
        .engagement-card {
          padding: 0.8rem 1rem;
        }
        .engagement-card .card-icon {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
        }
      }

      .site-footer {
        margin-top: 30px;
        padding: 34px max(28px, calc((100% - 1220px) / 2)) 18px;
        color: #fff;
        background:
          radial-gradient(
            circle at 0 0,
            rgba(28, 139, 105, 0.45),
            transparent 28%
          ),
          linear-gradient(135deg, #05331f, #006450);
      }

      /* Checkbox styling */
      .form-check-input:checked {
        background-color: #1a3c28;
        border-color: #1a3c28;
      }
      .form-check-label {
        font-size: 0.85rem;
        color: #333;
        font-weight: 500;
      }
      textarea {
        resize: vertical;
        min-height: 100px;
      }
      /* ===== STICKY RIGHT SECTION ===== */
      .right-sidebar-wrapper {
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        /* overflow-y: auto; */
        padding-right: 5px;
      }

      .right-sidebar-wrapper::-webkit-scrollbar {
        width: 4px;
      }

      .right-sidebar-wrapper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
      }

      .right-sidebar-wrapper::-webkit-scrollbar-thumb {
        background: #1a3c28;
        border-radius: 10px;
      }

      .right-sidebar-wrapper::-webkit-scrollbar-thumb:hover {
        background: #2a5c3e;
      }
@media (max-width:991px){
.action-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:576px){
.action-grid{
    grid-template-columns:1fr;
}
}
@media(max-width:991px){

.split-section{
    grid-template-columns:1fr;
    gap:20px;
}

.research-body{
    grid-template-columns:1fr;
}

.research-body img{
    height:240px;
}

}
@media(max-width:991px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

}

@media(max-width:576px){

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:991px){

.hero-card{

grid-template-columns:1fr;

height:auto;

}

.hero-copy{

padding:22px;

}

.hero-visual{

min-height:240px;

}

}

@media(max-width:768px){

.brand-row{

flex-wrap:wrap;

}

.brand-row h1{

font-size:22px;

}

.top-coalition-logo{

width:120px;

height:auto;

}

}

/* ===== RESPONSIVE FIX ===== */

@media (max-width: 995px) {

    .sidebar{
        display:none !important;
    }

    .page-shell{
        margin-left:0 !important;
        width:100% !important;
    }

    .top-header{
        margin-left:0 !important;
        width:100% !important;
    }

    .hero-card{
        display:grid;
        grid-template-columns:1fr !important;
        gap:20px;
    }

    .hero-copy,
    .hero-visual{
        width:100%;
    }

    .updates-section,
    .content-section,
    .partners-section,
    .split-section,
    .strategic-cards-section{
        width:100%;
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .split-section{
        display:grid;
        grid-template-columns:1fr !important;
    }

    .action-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

    .footer-grid{
        grid-template-columns:1fr !important;
    }
}

@media (max-width:576px){

    .action-grid{
        grid-template-columns:1fr !important;
    }

    .hero-copy h2{
        font-size:32px;
    }
}
html,
body{
    overflow-x:hidden;
}

.sidebar,
.sidebar *{
    scrollbar-width:none !important;
    -ms-overflow-style:none !important;
}

.sidebar::-webkit-scrollbar,
.sidebar *::-webkit-scrollbar{
    width:0 !important;
    height:0 !important;
    display:none !important;
}

/* Keep the document scrollable while hiding its browser scrollbar. */
html,
body,
.page-shell {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.page-shell::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Use one continuous sidebar gradient so no hard colour split is visible. */
.sidebar {
    background: linear-gradient(180deg, #0b5f38 0%, #06442c 48%, #032f22 100%) !important;
}

.sidebar-content {
    background: transparent !important;
}

/* Keep detail-page banners visually consistent on desktop. */
@media (min-width: 992px) {
    .page-hero {
        min-height: 266px;
    }

    .page-hero .hero-text-area {
        width: min(100%, 900px);
    }

    .page-hero .hero-text {
        text-align: justify;
    }
}

@media (max-width: 991.98px) {
    .page-hero .hero-text-area {
        width: 100%;
    }

    .page-hero .hero-title,
    .page-hero .hero-subtitle {
        font-size: 2.25rem !important;
    }

    .page-hero .hero-text {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 1rem 0 !important;
    }

    .page-hero .hero-title,
    .page-hero .hero-subtitle {
        font-size: 1.7rem !important;
        letter-spacing: 0.5px !important;
    }

    .page-hero .hero-text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
}

/* Use Montserrat consistently throughout the site; retain icon font glyphs. */
html,
body,
button,
input,
select,
textarea,
body *:not(.bi):not([class*="bi-"]):not([class*="fa-"]) {
    font-family: "Montserrat", sans-serif !important;
}
.page-hero{
    position:relative;
    min-height:300px;
    overflow:hidden;

    display:flex;
    align-items:center;

    background-position:right center;
    background-repeat:no-repeat;
    background-size:cover;
}

.hero-content{

    position:absolute;

    top:50%;

    left:clamp(40px,8vw,140px);

    transform:translateY(-50%);

    width:min(650px,45%);

    z-index:10;
}

.hero-text-area{

    width:100%;
}

.hero-title{

    margin:0 0 24px;

    font-size:64px;

    line-height:1.1;

    font-family:Georgia,serif;

    color:#18473c;

    text-transform:uppercase;
}

.hero-subtitle{

    color:#18473c;

    font-weight:700;
}

.hero-divider{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:30px;
}

.hero-divider span{

    width:55px;

    height:4px;

    border-radius:10px;

    background:#1b6d4b;
}

.hero-text{

    margin:0;

    font-size:21px;

    line-height:1.8;

    color:#222;

    max-width:620px;
}
/* Laptop */

@media (max-width:1366px){

    .hero-content{

        left:70px;

        width:520px;
    }

    .hero-title{

        font-size:52px;
    }

    .hero-text{

        font-size:18px;
    }

}

/* Tablet */

@media (max-width:991px){

    .page-hero{

        min-height:450px;
    }

    .hero-content{

        left:40px;

        right:40px;

        width:auto;
    }

    .hero-title{

        font-size:42px;
    }

}

/* Mobile */

@media (max-width:576px){

    .hero-content{

        left:20px;

        right:20px;
    }

    .hero-title{

        font-size:34px;
    }

    .hero-text{

        font-size:16px;
    }

}

.hero-content{
    position:absolute;
    top:50%;
    left:clamp(40px,8vw,140px);
    transform:translateY(-50%);
    width:min(700px,46%);
    z-index:10;
}

.hero-text-area{
    width:100%;
}

.hero-title{
    margin:0 0 22px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:60px;
    line-height:1.1;
    text-transform:uppercase;
}

.hero-light{
    color:#18473c;
    font-weight:500;
}

.hero-dark{
    color:#18473c;
    font-weight:700;
}

.hero-divider{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 30px;
}

.hero-divider span{
    width:52px;
    height:4px;
    background:#1c7b54;
    border-radius:50px;
}

.hero-text{
    margin:0;
    max-width:650px;
    font-size:20px;
    line-height:1.8;
    color:#1f1f1f;
    font-weight:500;
}

/* Laptop */

@media (max-width:1366px){

    .hero-content{
        left:70px;
        width:560px;
    }

    .hero-title{
        font-size:50px;
    }

    .hero-text{
        font-size:18px;
    }

}

/* Tablet */

@media (max-width:991px){

    .hero-content{
        left:40px;
        right:40px;
        width:auto;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        max-width:100%;
        font-size:17px;
    }

}

/* Mobile */

@media (max-width:576px){

    .hero-content{
        left:20px;
        right:20px;
    }

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

    .hero-divider{
        margin-bottom:20px;
    }

    .hero-text{
        font-size:16px;
        line-height:1.7;
    }

}

.tribal-slider {
    position: relative;
    overflow: hidden;
}

.tribal-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease;
}

.tribal-slide.active {
    opacity: 1;
    visibility: visible;
}

.tribal-slide {
    z-index: 1;
    pointer-events: none;
}

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

.tribal-overlay {
    z-index: 3;
    pointer-events: none;
}

.tribal-content {
    position: absolute;
    z-index: 4;
}

.tribal-dots {
    z-index: 5;
}
@media (max-width: 995px) {
    .sidebar {
        display: none !important;
    }
}

/* =========================================================
   TRIBAL SIDEBAR IMAGE SLIDER
   ========================================================= */

.tribal-panel {
    position: relative;
    flex: 0 0 var(--sidebar-hero-height);
    width: 100%;
    min-height: var(--sidebar-hero-height);
    overflow: hidden;
    isolation: isolate;
}


/* ---------------------------------------------------------
   SLIDES
   --------------------------------------------------------- */

.tribal-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    z-index: 1;
    pointer-events: none;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.tribal-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* ---------------------------------------------------------
   DARK OVERLAY
   --------------------------------------------------------- */

.tribal-overlay {
    position: absolute;
    inset: 0;

    z-index: 3;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 0%,
            rgba(0, 0, 0, 0.08) 35%,
            rgba(3, 41, 29, 0.35) 58%,
            rgba(3, 41, 29, 0.92) 100%
        );
}


/* ---------------------------------------------------------
   DYNAMIC CONTENT
   --------------------------------------------------------- */

.tribal-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 55px;

    z-index: 4;

    color: #fff;

    pointer-events: none;
}


/* Badge */

.tribal-badge {
    display: inline-block;

    margin-bottom: 9px;
    padding: 5px 11px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    color: #fff;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* Title */

.tribal-content h3 {
    margin: 0 0 10px;

    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 800;

    line-height: 1.25;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* Button */

.tribal-btn {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 4px;
    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;

    color: #fff !important;

    background: #1c8b69;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.18);

    pointer-events: auto;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.tribal-btn:hover {
    color: #fff !important;

    background: #167455;

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.25);
}


/* ---------------------------------------------------------
   DOTS
   --------------------------------------------------------- */

.tribal-dots {
    position: absolute;

    left: 50%;
    bottom: 14px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    z-index: 5;
}

.tribal-dots .dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.tribal-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.tribal-dots .dot.active {
    background: #fff;

    transform: scale(1.35);

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.85);
}


/* ---------------------------------------------------------
   TEXT CHANGE ANIMATION
   --------------------------------------------------------- */

.tribal-content.text-changing #tribalSlideBadge,
.tribal-content.text-changing #tribalSlideText,
.tribal-content.text-changing #tribalSlideButton {
    opacity: 0;
    transform: translateY(8px);
}

#tribalSlideBadge,
#tribalSlideText,
#tribalSlideButton {
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 995px) {

    .tribal-content {
        left: 18px;
        right: 18px;
        bottom: 48px;
    }

    .tribal-content h3 {
        font-size: 19px;
    }

    .tribal-btn {
        padding: 8px 13px;
        font-size: 10px;
    }
}


@media (max-width: 576px) {

    .tribal-content {
        left: 15px;
        right: 15px;
        bottom: 42px;
    }

    .tribal-content h3 {
        font-size: 17px;
    }

    .tribal-badge {
        font-size: 8px;
        padding: 4px 9px;
    }

    .tribal-btn {
        padding: 7px 11px;
        font-size: 9px;
    }

    .tribal-dots {
        bottom: 11px;
    }

    .tribal-dots .dot {
        width: 7px;
        height: 7px;
    }
}

/* =========================================================
   ALLIANCE & AFFILIATIONS SECTION
========================================================= */

.alliance-affiliations-section {
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.alliance-affiliations-section .alliance-container {
    width: min(1200px, 92%);
    margin: 0 auto;

    display: grid !important;

    /*
       FORCE TWO COLUMNS
    */
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 30px;

    align-items: stretch;

    box-sizing: border-box;
}


/* =========================================================
   BOTH COLUMNS
========================================================= */

.alliance-affiliations-section .partner-column {
    position: relative;

    width: auto !important;
    max-width: none !important;

    min-width: 0 !important;

    /*
       Important if another CSS has grid-column
    */
    grid-column: auto !important;
    grid-row: auto !important;

    padding: 28px;

    box-sizing: border-box;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid rgba(31, 92, 58, 0.10);

    box-shadow:
        0 12px 35px rgba(31, 92, 58, 0.07);

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.alliance-affiliations-section .partner-column-heading {
    position: relative;

    z-index: 5;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    padding-bottom: 18px;

    box-sizing: border-box;

    border-bottom: 1px solid #e4ece7;
}


.alliance-affiliations-section .heading-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f3ec;

    color: #1f5c3a;

    font-size: 19px;
}


.alliance-affiliations-section
.partner-column-heading h2 {

    margin: 0;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 700;

    color: #1f5c3a;
}


.alliance-affiliations-section
.partner-column-heading p {

    margin: 5px 0 0;

    font-size: 13px;

    line-height: 1.4;

    color: #748078;
}


/* =========================================================
   VERTICAL VIEWPORT
========================================================= */

.alliance-affiliations-section
.vertical-logo-wrapper {

    position: relative;

    width: 100%;

    height: 460px;

    overflow: hidden;

    box-sizing: border-box;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%
        );
}


/* =========================================================
   TRACK
========================================================= */

.alliance-affiliations-section
.vertical-logo-track {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 14px;

    flex-shrink: 0;

    will-change: transform;
}


/* =========================================================
   PARTNER ITEM
========================================================= */

.alliance-affiliations-section
.vertical-partner-logo {

    width: 100%;

    min-width: 0;

    height: 68px;

    min-height: 68px;

    flex: 0 0 68px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 14px;

    padding: 10px 18px;

    box-sizing: border-box;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3f8f5
        );

    border: 1px solid #dce9e1;

    color: #245b3d;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .2px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}


/* =========================================================
   ICON
========================================================= */

.alliance-affiliations-section
.vertical-partner-logo i {

    width: 40px;

    height: 40px;

    min-width: 40px;

    flex: 0 0 40px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e5f2e9;

    color: #1f5c3a;

    font-size: 16px;

    line-height: 1;

    box-sizing: border-box;
}


/* =========================================================
   TEXT
========================================================= */

.alliance-affiliations-section
.vertical-partner-logo span {

    display: block;

    flex: 1;

    min-width: 0;

    text-align: left;

    line-height: 1.3;

    white-space: normal;
}


/* =========================================================
   HOVER
========================================================= */

.alliance-affiliations-section
.vertical-partner-logo:hover {

    transform: translateX(5px);

    background: #ffffff;

    border-color: #a9cdb7;

    box-shadow:
        0 8px 22px rgba(31, 92, 58, .10);
}


.alliance-affiliations-section
.vertical-partner-logo:hover i {

    background: #1f5c3a;

    color: #ffffff;
}


/* =========================================================
   ALLIANCE - TOP TO BOTTOM
========================================================= */

.alliance-affiliations-section
.alliance-track {

    animation:
        allianceScroll 35s linear infinite;
}


/* =========================================================
   AFFILIATION - BOTTOM TO TOP
========================================================= */

.alliance-affiliations-section
.affiliation-track {

    animation:
        affiliationScroll 30s linear infinite;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes allianceScroll {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }

}


@keyframes affiliationScroll {

    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }

}


/* =========================================================
   PAUSE
========================================================= */

.alliance-affiliations-section
.vertical-logo-wrapper:hover
.vertical-logo-track {

    animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .alliance-affiliations-section
    .alliance-container {

        width: 94%;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 20px;
    }


    .alliance-affiliations-section
    .partner-column {

        padding: 22px;
    }


    .alliance-affiliations-section
    .partner-column-heading h2 {

        font-size: 21px;
    }


    .alliance-affiliations-section
    .partner-column-heading p {

        font-size: 12px;
    }


    .alliance-affiliations-section
    .vertical-logo-wrapper {

        height: 420px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .alliance-affiliations-section {

        padding: 50px 0;
    }


    .alliance-affiliations-section
    .alliance-container {

        width: 92%;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr) !important;

        gap: 25px;
    }


    .alliance-affiliations-section
    .partner-column {

        width: 100% !important;

        padding: 22px 18px;

        grid-column: auto !important;
    }


    .alliance-affiliations-section
    .partner-column-heading {

        gap: 12px;

        margin-bottom: 18px;

        padding-bottom: 15px;
    }


    .alliance-affiliations-section
    .heading-icon {

        width: 44px;

        height: 44px;

        min-width: 44px;

        flex-basis: 44px;

        font-size: 17px;
    }


    .alliance-affiliations-section
    .partner-column-heading h2 {

        font-size: 21px;
    }


    .alliance-affiliations-section
    .partner-column-heading p {

        font-size: 12px;
    }


    .alliance-affiliations-section
    .vertical-logo-wrapper {

        width: 100%;

        height: 400px;
    }


    .alliance-affiliations-section
    .vertical-partner-logo {

        height: 66px;

        min-height: 66px;

        flex-basis: 66px;

        padding: 10px 14px;

        gap: 12px;

        font-size: 14px;
    }


    .alliance-affiliations-section
    .vertical-partner-logo i {

        width: 36px;

        height: 36px;

        min-width: 36px;

        flex-basis: 36px;

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .alliance-affiliations-section
    .alliance-container {

        width: 94%;
    }


    .alliance-affiliations-section
    .partner-column {

        padding: 18px 14px;
    }


    .alliance-affiliations-section
    .partner-column-heading h2 {

        font-size: 19px;
    }


    .alliance-affiliations-section
    .vertical-logo-wrapper {

        height: 360px;
    }


    .alliance-affiliations-section
    .vertical-partner-logo {

        height: 62px;

        min-height: 62px;

        flex-basis: 62px;

        padding: 9px 12px;

        font-size: 13px;
    }


    .alliance-affiliations-section
    .vertical-partner-logo i {

        width: 34px;

        height: 34px;

        min-width: 34px;

        flex-basis: 34px;

        font-size: 14px;
    }

}
@media (max-width: 768px) {

    .research-list {
        gap: 15px;
    }

    .research-item {
        grid-template-columns: 120px minmax(0, 1fr);

        gap: 14px;

        padding: 10px;
    }

    .research-item img {
        width: 120px;
        height: 145px;
    }

    .research-content h3 {
        font-size: 16px;
    }

    .research-content p {
        font-size: 12px;

        line-height: 1.5;
    }

    .research-number {
        width: 26px;
        height: 26px;

        font-size: 11px;
    }

}


@media (max-width: 480px) {

    .research-item {
        grid-template-columns: 1fr;
    }

    .research-item img {
        width: 100%;
        height: 160px;
    }

    .research-content {
        padding: 4px 5px 8px;
    }

}
.alliance-affiliations-section .vertical-logo-wrapper {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    box-sizing: border-box;
}

.alliance-affiliations-section .vertical-logo-track {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    will-change: transform;
    position: relative;
}
/* =========================================================
   FINAL SIDEBAR FIX
   ========================================================= */

@media (min-width: 992px) {

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;

        width: 220px !important;
        height: 100vh !important;

        display: flex !important;
        flex-direction: column !important;

        overflow: hidden !important;

        z-index: 1030 !important;
    }

    .sidebar-content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .page-shell {
        margin-left: 220px !important;
        width: calc(100% - 220px) !important;
        min-height: 100vh !important;
    }

}
/* =========================================================
   SIDEBAR MENU + IMAGE FIX
   ========================================================= */

@media (min-width: 992px) {

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 220px !important;
        height: 100vh !important;

        display: flex !important;
        flex-direction: column !important;

        overflow: hidden !important;
        z-index: 1030 !important;
    }

    /* Image slider smaller so menu remains visible */
    /* .tribal-panel {
        flex: 0 0 210px !important;
        width: 100% !important;
        height: 210px !important;
        min-height: 210px !important;
        max-height: 210px !important;
        overflow: hidden !important;
    } */

    .sidebar-content {
        flex: 1 1 auto !important;
        min-height: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        padding: 10px 10px 15px !important;
    }

    .side-nav {
        display: grid !important;
        gap: 5px !important;
    }

    .side-link {
        min-height: 42px !important;
        padding: 0 10px !important;
        gap: 11px !important;
        font-size: 13px !important;
    }

    .side-link i {
        width: 22px !important;
        min-width: 22px !important;
        font-size: 17px !important;
    }

    .page-shell {
        margin-left: 220px !important;
        width: calc(100% - 220px) !important;
        min-height: 100vh !important;
    }
}
/* =========================================================
   FINAL SIDEBAR
   LARGE IMAGE + SCROLLABLE MENU
   ========================================================= */

@media (min-width: 992px) {

    /* MAIN SIDEBAR */
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;

        width: 220px !important;
        height: 100vh !important;

        display: flex !important;
        flex-direction: column !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        z-index: 1030 !important;

        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .sidebar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }


    /* =========================================
       LARGE SIDEBAR IMAGE
       ========================================= */

    .tribal-panel {
        position: relative !important;

        flex: 0 0 560px !important;

        width: 100% !important;
        height: 560px !important;
        min-height: 560px !important;
        max-height: 560px !important;

        overflow: hidden !important;
    }


    /* =========================================
       SIDEBAR CONTENT / MENU
       ========================================= */

    .sidebar-content {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        flex: 0 0 auto !important;
        min-height: auto !important;

        width: 100% !important;

        padding: 10px 8px 18px !important;

        overflow: visible !important;

        background: transparent !important;
    }


    /* MENU */
    .side-nav {
        display: grid !important;
        gap: 5px !important;

        width: 100% !important;
    }


    /* MENU ITEM */
    .side-link {
        min-height: 44px !important;

        padding: 0 10px !important;

        gap: 12px !important;

        font-size: 13px !important;

        border-radius: 8px !important;
    }


    .side-link i {
        width: 22px !important;
        min-width: 22px !important;

        font-size: 17px !important;
    }


    /* QUICK CONTACT */
    .quick-contact {
        margin-top: 10px !important;
    }


    /* PAGE CONTENT */
    .page-shell {
        margin-left: 220px !important;

        width: calc(100% - 220px) !important;

        min-height: 100vh !important;
    }
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
}

.footer-credit {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-credit a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    margin-left: 3px;

    transition: all 0.25s ease;
}

.footer-credit a:hover {
    color: #8fe7af;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #8fe7af;
}


/* Mobile */
@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-credit {
        display: block;
        margin: 5px 0 0;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}