:root {
  --forest-900: #0b2f1f;
  --forest-700: #145c3b;
  --forest-500: #1c7c54;
  --forest-300: #5aa87a;
  --sun: #f4b860;
  --sand: #f6f1e7;
  --sky: #e9f4f2;
  --ink: #1a1f1b;
  --ink-soft: #3f4a43;
  --accent: #c85f3a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f5f8f4 0%, #eef3f0 40%, #f7f1e8 100%);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--forest-900);
}

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

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

.topbar {
  background: var(--forest-900);
  color: #dfeee4;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.topbar-info span,
.topbar-meta span {
  margin-right: 1rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 92, 59, 0.1);
}

.brand-logo {
  /* width: 46px; */
  height: 46px;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.nav-link {
  font-weight: 600;
  margin: 0 0.3rem;
}

.btn-primary {
  background: var(--forest-700);
  border-color: var(--forest-700);
  box-shadow: 0 10px 20px rgba(20, 92, 59, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--forest-500);
  border-color: var(--forest-500);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero {
  background: linear-gradient(101deg, rgb(75 75 75 / 90%), rgb(214 255 236 / 10%)), url("../img/slider.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3rem 0 4rem;
}

.hero-slide {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero .display-5,
.hero .lead {
  color: #fff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #198754;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(120deg, rgba(11, 47, 31, 0.92), rgb(18 125 76 / 20%)), url("../img/slider.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero .page-title {
  color: #fff;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.page-hero .page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
}

.page-hero .page-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.owl-nav {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: rgba(11, 47, 31, 0.5) !important;
}

.carousel-arrow {
  color: #fff;
  font-size: 1.2rem;
}

.owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.4) !important;
}

.owl-dots .owl-dot.active span {
  background: #f4b860 !important;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #d7f2e1;
  margin-bottom: 1rem;
}

.hero-illustration {
  animation: float 6s ease-in-out infinite;
}

.hero-illustration-wrap {
  animation: slide-in-right 0.9s ease both;
}

.stat-band {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #f7f1e8 0%, #e5efe7 100%);
}

.stat-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(13, 41, 30, 0.08);
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-700);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--sky);
}

.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-carousel .owl-stage-outer {
  padding: 0.6rem 0;
}

.gallery-carousel .owl-item {
  padding: 0 0.6rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 18px 32px rgba(13, 41, 30, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, rgba(11, 47, 31, 0) 0%, rgba(11, 47, 31, 0.85) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 47, 31, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(960px, 100%);
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(11, 47, 31, 0.35);
}

.lightbox-caption {
  margin-top: 0.8rem;
  color: #f6f1e7;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--forest-900);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(11, 47, 31, 0.25);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.feature-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(13, 41, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(13, 41, 30, 0.12);
}

.feature-icon {
  width: 64px;
  margin-bottom: 1rem;
}
.note-frame {
    border-radius: 4px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffffb3 !important;
    font-family: sans-serif;
}
.program-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(13, 41, 30, 0.1);
  height: 100%;
  max-height: 430px;
}

.program-carousel .owl-stage-outer {
  padding: 0.6rem 0;
}

.program-carousel .owl-item {
  padding: 0 0.6rem;
}

.program-carousel .owl-nav button {
  border: 1px solid rgba(20, 92, 59, 0.25) !important;
  background: #fff !important;
  box-shadow: 0 8px 16px rgba(13, 41, 30, 0.12);
}

.program-carousel .carousel-arrow {
  color: var(--forest-700);
}

.program-carousel .owl-dots .owl-dot span {
  background: rgba(20, 92, 59, 0.25) !important;
}

.program-carousel .owl-dots .owl-dot.active span {
  background: var(--forest-700) !important;
}

.program-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.program-body {
  padding: 1.6rem;
}

.link-arrow {
  color: var(--forest-700);
  font-weight: 600;
}

.link-arrow::after {
  content: \" ->\";
}

.parallax-cta {
  position: relative;
  padding: 5rem 0;
  background-image: url("../img/slider.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgb(11 55 35 / 40%);
}

.parallax-cta .container {
  position: relative;
  z-index: 1;
}

.parallax-section {
  position: relative;
  background-image: url("../img/slider.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 40%);
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

.timeline {
  border-left: 2px solid rgba(20, 92, 59, 0.2);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: var(--forest-700);
  border-radius: 50%;
}

.box-aqua {
  background-color: #f8f9fa33;
  padding: 1rem;
}

.timeline-date {
  font-weight: 700;
  color: var(--forest-700);
  margin-bottom: 0.3rem;
  margin-left: 1rem;
}

.news-card,
.report-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(13, 41, 30, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-image,
.report-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.news-body,
.report-body {
  padding: 1.5rem;
  flex: 1;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.news-detail-section .link-arrow {
  display: inline-block;
}

.news-detail-title {
  margin-top: 0.4rem;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

.news-detail-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.news-detail-cover {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(13, 41, 30, 0.12);
}

.news-detail-body p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.news-tag {
  background: #e5efe7;
  color: var(--forest-700);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-detail-meta-list div {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.news-related {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.news-related li {
  margin-bottom: 0.8rem;
}

.news-related a {
  color: var(--forest-700);
  font-weight: 600;
}

.metric-card {
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(13, 41, 30, 0.08);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest-700);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.progress-wrap .progress {
  height: 0.6rem;
  background: #e0ece4;
  border-radius: 999px;
}

.progress-wrap .progress-bar {
  background: linear-gradient(90deg, var(--forest-700), var(--sun));
}

.progress-item {
  margin-bottom: 1rem;
}

.map-card {
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(13, 41, 30, 0.08);
}

.map-caption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.contact-card,
.contact-info {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(13, 41, 30, 0.1);
}

.contact-info .info-list div {
  margin-bottom: 0.6rem;
}

.contact-map {
  margin: 1.2rem 0;
}

.contact-highlight {
  background: var(--sky);
  padding: 1rem;
  border-radius: 14px;
}

.site-footer {
  background: linear-gradient(0deg, rgba(11, 47, 31, 0.92), rgba(11, 47, 31, 0.92)), url("../img/patern.jpg");
  background-position: center;
  color: #e1f0e7;
  padding: 3rem 0 2rem;
  background-repeat: repeat;
  background-size: contain;
}

.site-footer h6 {
  color: #fff;
}
.social-links{
  display: inline-flex;
}
.social-links li{
  margin-right: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #e1f0e7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--forest-700);
  color: #fff;
  box-shadow: 0 12px 24px rgba(13, 41, 30, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
}

.shadow-soft {
  box-shadow: 0 20px 40px rgba(13, 41, 30, 0.08);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(48px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .topbar-info span {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .parallax-cta {
    background-attachment: scroll;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}