.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 999;
  transition: background-color 0.3s ease;
}

/* This style will be applied when scrolling */
.nav-main.scrolled {
  background-color: #00294b;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-logo {
  padding: 15px 0;
  margin-right: 30px;
}

.nav-logo img {
  height: 50px;
}

.nav-menu {
  flex: 1;
}

.mobile-toggle {
  display: none;
  color: #ffffff;
  font-size: 24px;
  padding: 15px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.nav-list > li {
  position: relative;
  margin: 0 5px;
}

.nav-list > li > a {
  display: block;
  color: #ffffff;
  padding: 25px 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-list > li > a:hover {
  color: #25ae88;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00294b;
  min-width: 220px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
}

.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown ul li a {
  display: block;
  padding: 8px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown ul li a:hover {
  color: #25ae88;
}

/* Nested Dropdowns */
.dropdown ul .dropdown > ul {
  top: 0;
  left: 100%;
}

/* Special Buttons */
.gield-link {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.gield-link i {
  margin-left: 5px;
}

.cso-btn {
  background: #25ae88;
  color: #ffffff;
  padding: 8px 20px !important;
  border-radius: 4px;
  margin: 17px 0;
  font-weight: 600;
  transition: background-color 0.3s ease !important;
}

.cso-btn:hover {
  background: #1e8c6d; /* Darker shade of the button color */
  color: #ffffff !important;
}

/* Active/Current Page */
.nav-list > li.active > a {
  color: #25ae88;
  font-weight: 700;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #00294b;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-list.active {
    display: block;
  }

  .nav-list > li > a {
    padding: 12px 20px;
  }

  .nav-list > li {
    margin: 0;
  }

  .dropdown > ul {
    position: static;
    display: none;
    background: #ffffff;
    padding-left: 20px;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .dropdown.active > ul {
    display: block;
  }

  .cso-btn {
    display: inline-block;
    margin: 10px 20px;
  }

  .nav-logo img {
    height: 40px; /* Slightly smaller logo on mobile */
  }
}

/* Add to your CSS file */
.post-pagination {
  margin-top: 50px;
}

.post-pagination .pagination-box {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.post-pagination .pagination-box li {
  display: inline-block;
}

.post-pagination .pagination-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #f4f5f8;
  border-radius: 50%;
  color: #878e9b;
  font-size: 15px;
  font-weight: 600;
  transition: all 500ms ease;
}

.post-pagination .pagination-box li.active a,
.post-pagination .pagination-box li a:hover {
  background-color: #15c8a0;
  color: #ffffff;
}

/* Vision Mission Section Styling */
.vision-mission-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/scope.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

.vision-mission-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Content Boxes */
.content-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #15c8a0; /* Your theme color */
  position: relative;
  padding-bottom: 10px;
}

.title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #15c8a0;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

/* Center Image Styling */
.center-image {
  position: relative;
  width: 300px;
  height: 300px;
}

.magnify-effect {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magnify-glass {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vision-mission-wrapper {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }

  .center-image {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991px) {
  .vision-mission-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .center-image {
    margin: 30px auto;
  }

  .content-box {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .vision-mission-section {
    padding: 40px 0;
  }

  .center-image {
    width: 200px;
    height: 200px;
  }

  .title {
    font-size: 20px;
  }

  .description {
    font-size: 14px;
  }
}

/* Animation for hover effects */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(21, 200, 160, 0.2) 70%
  );
  animation: pulse 3s infinite;
  pointer-events: none;
}

/* GCF Project Document Styles */
.project-document {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  overflow: hidden;
  max-width: 1100px;
}

.project-header {
  background: linear-gradient(135deg, #15c8a0, #0fa689);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.project-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(135deg, transparent 15px, white 0) left,
    linear-gradient(225deg, transparent 15px, white 0) right;
  background-size: 50% 100%;
  background-repeat: no-repeat;
}

.project-title {
  font-size: 2.5rem;
  margin: 0 0 15px;
  font-weight: 700;
}

.project-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.project-content {
  padding: 40px;
}

.project-section {
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease;
}

.section-title {
  color: #15c8a0;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #15c8a0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  font-size: 1.6rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.info-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #15c8a0;
}

.info-card-title {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: #15c8a0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card-title i {
  font-size: 1.3rem;
}

.info-card-content {
  color: #333;
  margin: 0;
}

/* List styles */
.content-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.content-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.content-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.content-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.content-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.content-list li:nth-child(4) {
  animation-delay: 0.4s;
}
.content-list li:nth-child(5) {
  animation-delay: 0.5s;
}
.content-list li:nth-child(6) {
  animation-delay: 0.6s;
}

.content-list li::before {
  content: '\f0a4'; /* Unicode for hand-point-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #15c8a0;
  font-size: 1.2rem;
}

.objectives-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.objectives-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
  transform: translateX(20px);
}

.objectives-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.objectives-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.objectives-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.objectives-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.objectives-list li::before {
  content: '\f058'; /* Unicode for circle-check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #15c8a0;
  font-size: 1.2rem;
}

/* Activities section */
.activities-timeline {
  margin: 30px 0;
  position: relative;
}

.activities-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 3px;
  background-color: #15c8a0;
}

.activity-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.activity-item:nth-child(1) {
  animation-delay: 0.1s;
}
.activity-item:nth-child(2) {
  animation-delay: 0.3s;
}
.activity-item:nth-child(3) {
  animation-delay: 0.5s;
}
.activity-item:nth-child(4) {
  animation-delay: 0.7s;
}
.activity-item:nth-child(5) {
  animation-delay: 0.9s;
}
.activity-item:nth-child(6) {
  animation-delay: 1.1s;
}
.activity-item:nth-child(7) {
  animation-delay: 1.3s;
}
.activity-item:nth-child(8) {
  animation-delay: 1.5s;
}
.activity-item:nth-child(9) {
  animation-delay: 1.7s;
}
.activity-item:nth-child(10) {
  animation-delay: 1.9s;
}
.activity-item:nth-child(11) {
  animation-delay: 2.1s;
}

.activity-item::before {
  content: '\f073'; /* Unicode for calendar */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15c8a0;
  z-index: 1;
  font-size: 1.2rem;
  transform: translateX(-8px);
}

.activity-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #15c8a0;
}

.activity-link {
  display: inline-block;
  margin-top: 10px;
  color: #15c8a0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.activity-link:hover {
  color: #0fa689;
  text-decoration: underline;
}

/* Project outputs section */
.outputs-list,
.impact-list {
  list-style-type: none;
  padding: 0;
}

.output-item,
.impact-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 50px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.output-item:nth-child(1),
.impact-item:nth-child(1) {
  animation-delay: 0.1s;
}
.output-item:nth-child(2),
.impact-item:nth-child(2) {
  animation-delay: 0.2s;
}
.output-item:nth-child(3),
.impact-item:nth-child(3) {
  animation-delay: 0.3s;
}
.output-item:nth-child(4),
.impact-item:nth-child(4) {
  animation-delay: 0.4s;
}
.output-item:nth-child(5),
.impact-item:nth-child(5) {
  animation-delay: 0.5s;
}
.output-item:nth-child(6),
.impact-item:nth-child(6) {
  animation-delay: 0.6s;
}
.output-item:nth-child(7),
.impact-item:nth-child(7) {
  animation-delay: 0.7s;
}
.output-item:nth-child(8),
.impact-item:nth-child(8) {
  animation-delay: 0.8s;
}
.output-item:nth-child(9),
.impact-item:nth-child(9) {
  animation-delay: 0.9s;
}

.output-item::before,
.impact-item::before {
  position: absolute;
  left: 15px;
  top: 20px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #15c8a0;
  font-size: 1.4rem;
}

.output-item::before {
  content: '\f0ca'; /* Unicode for list */
}

.impact-item::before {
  content: '\f140'; /* Unicode for bullseye */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .project-title {
    font-size: 1.8rem;
  }

  .project-subtitle {
    font-size: 1rem;
  }

  .project-content {
    padding: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .info-card-title {
    font-size: 1.1rem;
  }

  .activities-timeline::before {
    left: 15px;
  }

  .activity-item {
    padding-left: 45px;
  }

  .activity-item::before {
    left: 5px;
  }
}

/* GCF CSO Project Section - Completely Unique Styling */
.gcf-cso-section {
  padding: 30px 0;
  background-color: #f8f9fa;
}

.gcf-cso-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gcf-cso-document {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.gcf-cso-header {
  background: #15c8a0;
  color: white;
  padding: 35px 30px;
  text-align: center;
}

.gcf-cso-title {
  font-size: 32px;
  margin: 0 0 15px;
  font-weight: 700;
}

.gcf-cso-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.gcf-cso-content {
  padding: 30px;
}

/* Section styles */
.gcf-cso-details-section,
.gcf-cso-context-section,
.gcf-cso-objectives-section,
.gcf-cso-activities-section,
.gcf-cso-outputs-section,
.gcf-cso-impact-section {
  margin-bottom: 50px;
}

.gcf-cso-section-title {
  color: #15c8a0;
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #15c8a0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcf-cso-section-title i {
  font-size: 22px;
}

/* Details grid */
.gcf-cso-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gcf-cso-detail-card {
  background-color: #f8f9fa;
  border-left: 4px solid #15c8a0;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gcf-cso-detail-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
  color: #15c8a0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcf-cso-detail-text {
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* Context section */
.gcf-cso-paragraph {
  margin-bottom: 20px;
  line-height: 1.7;
}

.gcf-cso-image-text-row {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.gcf-cso-text-col {
  flex: 3;
}

.gcf-cso-image-col {
  flex: 2;
}

.gcf-cso-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.gcf-cso-image {
  width: 100%;
  height: auto;
  display: block;
}

.gcf-cso-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

/* Gap list */
.gcf-cso-gap-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
}

.gcf-cso-gap-heading {
  color: #15c8a0;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

.gcf-cso-gap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gcf-cso-gap-item {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.gcf-cso-gap-icon {
  color: #15c8a0;
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
}

.gcf-cso-gap-text {
  line-height: 1.6;
}

/* Objectives section */
.gcf-cso-objectives-container {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.gcf-cso-objectives-intro {
  font-size: 18px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 500;
}

.gcf-cso-objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gcf-cso-objective-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gcf-cso-objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gcf-cso-objective-icon {
  font-size: 30px;
  color: #15c8a0;
  margin-bottom: 15px;
}

.gcf-cso-objective-text {
  margin: 0;
  line-height: 1.6;
}

/* Activities section */
.gcf-cso-activities-wrapper {
  padding: 15px;
}

.gcf-cso-activities-timeline {
  position: relative;
  margin-left: 20px;
}

.gcf-cso-activities-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #15c8a0;
}

.gcf-cso-activity-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.gcf-cso-activity-marker {
  position: absolute;
  left: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: #15c8a0;
  border-radius: 50%;
  z-index: 1;
}

.gcf-cso-activity-content {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gcf-cso-activity-title {
  color: #15c8a0;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.gcf-cso-activity-description {
  margin-bottom: 15px;
  line-height: 1.6;
}

.gcf-cso-activity-link {
  display: inline-block;
  color: #15c8a0;
  text-decoration: none;
  font-weight: 500;
}

.gcf-cso-activity-link:hover {
  text-decoration: underline;
}

.gcf-cso-image-break {
  margin: 40px 0;
  padding-left: 30px;
}

.gcf-cso-break-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Outputs section */
.gcf-cso-outputs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gcf-cso-output-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gcf-cso-output-icon {
  color: #15c8a0;
  font-size: 24px;
  flex-shrink: 0;
}

.gcf-cso-output-text {
  margin: 0;
  line-height: 1.6;
}

/* Impact section */
.gcf-cso-impact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.gcf-cso-impact-item i {
  color: #15c8a0;
  font-size: 20px;
  flex-shrink: 0;
}

.gcf-cso-impact-item p {
  margin: 0;
  line-height: 1.6;
}

.gcf-cso-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gcf-cso-impact-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gcf-cso-impact-number {
  font-size: 36px;
  font-weight: 700;
  color: #15c8a0;
  margin-bottom: 15px;
}

.gcf-cso-impact-description {
  margin: 0;
  line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 768px) {
  .gcf-cso-title {
    font-size: 26px;
  }

  .gcf-cso-subtitle {
    font-size: 16px;
  }

  .gcf-cso-image-text-row {
    flex-direction: column;
  }

  .gcf-cso-image-col {
    order: -1;
    margin-bottom: 20px;
  }

  .gcf-cso-activity-item {
    padding-left: 25px;
  }

  .gcf-cso-objectives-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects */
/* Projects Styling */
.projects-section {
  padding: 100px 0;
  background-color: #f7f7f9;
}

.projects-filter-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.project-filter-btns {
  display: flex;
  list-style: none;
  padding: 0;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.project-filter-btn {
  padding: 15px 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.project-filter-btn.active {
  color: #fff;
  background-color: #31b465;
}

.project-card {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

.project-card__status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.project-card__status--active {
  background-color: #31b465;
}

.project-card__status--completed {
  background-color: #ff7e00;
}

.project-card__content {
  padding: 25px;
}

.project-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-card__description {
  color: #717171;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
  color: #717171;
  font-size: 14px;
}

.project-empty {
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-empty i {
  font-size: 50px;
  color: #ddd;
  margin-bottom: 20px;
}

.project-empty h3 {
  margin-bottom: 10px;
}

/* Modal Styling */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background-color: #31b465;
  color: white;
  border-bottom: none;
}

.modal-header .close {
  color: white;
  opacity: 1;
}

.project-details-sidebar {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.project-details-sidebar h4 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.project-details-sidebar ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eaeaea;
}

.project-details-sidebar ul li:last-child {
  border-bottom: none;
}

.badge-success {
  background-color: #31b465;
}

.badge-warning {
  background-color: #ff7e00;
}
