/*!
Theme Name: APCC
Theme URI: http://underscores.me/
Author: Ahmad
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: apcc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

APCC is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
:root {
	--primary-green: #1b8c3b;
	--dark-green: #185c2a;
	--light-green: #eaf6f0;
	--accent-green: #3ec6e0;
	--accent-yellow: #ffc107;
	--accent-yellow-light: #fff3cd;
	--text-dark: #333;
	--text-light: #666;
	--white: #fff;
	--bg-light: #f6f8f7;
	--shadow: 0 4px 32px rgba(27,140,59,0.08);
	--radius: 8px;
  }

  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }

  body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--white);
  }

  /* Header Styles */
  .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white);
	padding: 1rem 2rem;
	box-shadow: var(--shadow);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }

  .logo img {
	height: 50px;
  }

  .nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
  }

  .nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
  }

  .nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-green);
	transition: width 0.3s ease;
  }

  .nav-link:hover {
	color: var(--primary-green);
  }

  .nav-link:hover::after {
	width: 100%;
  }

  .nav-link.active {
	color: var(--primary-green);
  }

  .nav-link.active::after {
	width: 100%;
  }

  .btn-apply {
	background: var(--primary-green);
	color: var(--white);
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-green);
  }

  .btn-apply:hover {
	background: var(--white);
	color: var(--primary-green);
	transform: translateY(-2px);
  }

  .mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-dark);
	cursor: pointer;
	padding: 0.5rem;
  }

  @media (max-width: 768px) {
	.nav-links {
	  position: fixed;
	  top: 80px;
		height:100%;
	  left: 0;
	  right: 0;
	  background: var(--white);
	  padding: 2rem;
	  flex-direction: column;
	  gap: 1.5rem;
	  box-shadow: var(--shadow);
	  transform: translateY(-150%);
	  opacity: 0;
	  visibility: hidden;
	  transition: all 0.3s ease;
	  display: flex !important;
	  z-index: 999;
	}

	.nav-links.active {
	  transform: translateY(0);
	  opacity: 1;
	  visibility: visible;
	}

	.mobile-menu-btn {
	  display: block;
	  z-index: 1000;
	}

	.nav-link {
	  font-size: 1.1rem;
	  width: 100%;
	  text-align: center;
	}

	.btn-apply {
	  width: 100%;
	  text-align: center;
	  margin-top: 1rem;
	}

	/* Prevent scrolling when menu is open */
	body.menu-open {
	  overflow: hidden;
	}
  }

  /* Hero Section */
  .hero {
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	padding: 2rem;
  }

  .hero-content {
	max-width: 800px;
  }

  .hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
  }

  .hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
  }

  /* Recent Updates */
  .recent-updates {
	padding: 4rem 2rem;
	background: var(--bg-light);
  }

  .section-title {
	text-align: center;
	font-size: 2rem;
	color: var(--primary-green);
	margin-bottom: 3rem;
  }

  .updates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
  }

  .update-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
  }

  .update-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
  }

  .update-content {
	padding: 1.5rem;
  }

  .update-content h3 {
	color: var(--primary-green);
	margin-bottom: 1rem;
  }

  /* Portfolio Section */
  .portfolio {
	padding: 4rem 2rem;
  }

  .portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
  }

  .portfolio-item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
  }

  .portfolio-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
  }

  .portfolio-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: var(--white);
  }

  /* Footer */
  footer {
	background: var(--dark-green);
	color: var(--white);
	padding: 4rem 2rem 2rem;
  }

  .footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
  }

  /* Hero Button Group Styles */
  .hero-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
	justify-content: center;
  }

  .hero-btn {
	background: var(--white);
	color: var(--primary-green);
	border: 2px solid var(--white);
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	position: relative;
	overflow: hidden;
  }

  .hero-btn span {
	position: relative;
	z-index: 1;
  }

  .hero-btn i {
	position: relative;
	z-index: 1;
	margin-left: 8px;
	transition: transform 0.3s ease;
  }

  /* Primary Button */
  .hero-btn.primary {
	background: var(--primary-green);
	color: var(--white);
	border-color: var(--primary-green);
  }

  .hero-btn.primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 0;
  }

  /* Secondary Button */
  .hero-btn.secondary {
	background: var(--accent-yellow);
	color: var(--text-dark);
	border-color: var(--accent-yellow);
  }

  .hero-btn.secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 0;
  }

  /* Default Button */
  .hero-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 0;
  }

  /* Hover States */
  .hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  .hero-btn:hover::before {
	transform: translateX(0);
  }

  .hero-btn:hover i {
	transform: translateX(5px);
  }

  /* Specific Hover Colors */
  .hero-btn:hover {
	color: var(--white);
	  background: transparent;
  }

  .hero-btn.primary:hover {
	border-color: var(--dark-green);
  }

  .hero-btn.secondary:hover {
	color: var(--accent-yellow);
	border-color: var(--accent-yellow);
	  background: transparent;
  }

  /* Enhanced Card Styles */
  .update-card {
	transition: all 0.3s ease;
	cursor: pointer;
  }

  .update-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 30px rgba(27,140,59,0.15);
  }

  .update-card img {
	transition: all 0.5s ease;
  }

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

  /* Enhanced Portfolio Styles */
  .portfolio-item {
	transition: all 0.3s ease;
  }

  .portfolio-item:hover {
	transform: translateY(-5px);
  }

  .portfolio-content {
	background: linear-gradient(transparent, rgba(27,140,59,0.9));
	transform: translateY(100%);
	transition: transform 0.3s ease;
	padding: 2rem;
  }

  .portfolio-item:hover .portfolio-content {
	transform: translateY(0);
  }

  /* Enhanced Navigation Styles */
  .nav-links a {
	position: relative;
  }

  .nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-green);
	transition: width 0.3s ease;
  }
  .nav-links a.btn-apply::after {
	  height: 0;
  }
  .nav-links a:hover::after {
	width: 100%;
  }

  /* Footer Styles */
  .footer-info {
	text-align: left;
  }

  .footer-info p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 1.5rem 0;
  }

  .footer-logo {
	width: 180px;
	height: auto;
	display: block;
	background: rgba(255, 255, 255, 0.9);
	padding: 1rem;
	border-radius: var(--radius);
	transition: transform 0.3s ease;
  }

  .footer-logo:hover {
	transform: translateY(-5px);
  }

  .footer-links h4 {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
  }

  .footer-links h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--accent-green);
  }

  .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }

  .footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: block;
	margin-bottom: 0.8rem;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
  }

  .footer-links a::before {
	content: '→';
	position: absolute;
	left: 0;
	opacity: 0;
	transition: all 0.3s ease;
  }

  .footer-links a:hover {
	color: var(--white);
	padding-left: 20px;
  }

  .footer-links a:hover::before {
	opacity: 1;
  }

  .contact-info li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.8);
  }

  .contact-info i {
	margin-right: 10px;
	color: var(--accent-green);
  }

  .social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
  }

  .social-links a {
	color: var(--white);
	font-size: 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
  }

  .social-links a:hover {
	background: var(--accent-green);
	transform: translateY(-3px);
  }

  .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
  }

  .footer-copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
  }

  @media (max-width: 992px) {
	.footer-content {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 2rem;
	}
  }

  @media (max-width: 768px) {
	.footer-content {
	  grid-template-columns: 1fr;
	}

	.footer-info {
	  text-align: center;
	}

	.footer-logo {
	  margin: 0 auto 1.5rem;
	}

	.footer-links h4 {
	  text-align: center;
	}

	.footer-links h4::after {
	  left: 50%;
	  transform: translateX(-50%);
	}

	.social-links {
	  justify-content: center;
	}

	.contact-info {
	  max-width: 300px;
	  margin: 0 auto;
	}

	.hero-buttons {
	  flex-direction: column;
	  align-items: center;
	}

	.hero-btn {
	  width: 100%;
	  max-width: 300px;
	}

	.portfolio-grid {
	  grid-template-columns: 1fr;
	}
	
	.nav-links {
	  display: none;
	}
  }

  /* Smooth Scroll Behavior */
  html {
	scroll-behavior: smooth;
  }

  /* Loading Animation */
  @keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
  }

  .hero-content, .update-card, .portfolio-item {
	animation: fadeIn 0.8s ease forwards;
  }

  .update-card:nth-child(2) {
	animation-delay: 0.2s;
  }

  .update-card:nth-child(3) {
	animation-delay: 0.4s;
  }

  /* Enhanced Mobile Styles */
  @media (max-width: 768px) {
	.hero-content h1 {
	  font-size: 2rem;
	}

	.hero-content p {
	  font-size: 1rem;
	}

	.update-card:hover {
	  transform: translateY(-5px);
	}

	.portfolio-content {
	  transform: translateY(0);
	  background: linear-gradient(transparent, rgba(27,140,59,0.95));
	}
  }

  /* Card Image Wrapper and Overlay */
  .card-image-wrapper {
	position: relative;
	overflow: hidden;
  }

  .card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(27,140,59,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
  }

  .update-card:hover .card-overlay {
	opacity: 1;
  }

  .read-more {
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transform: translateY(20px);
	transition: transform 0.3s ease;
  }

  .update-card:hover .read-more {
	transform: translateY(0);
  }

  /* Update Date Style */
  .update-date {
	display: inline-block;
	color: var(--primary-green);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	padding: 4px 12px;
	background: rgba(27,140,59,0.1);
	border-radius: 20px;
  }

  /* Portfolio Link Style */
  .portfolio-link {
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
	font-weight: 500;
	transition: transform 0.3s ease;
  }

  .portfolio-link i {
	margin-left: 8px;
	transition: transform 0.3s ease;
  }

  .portfolio-link:hover {
	transform: translateX(5px);
  }

  .portfolio-link:hover i {
	transform: translateX(5px);
  }

  /* Enhanced Section Titles */
  .section-title {
	margin-bottom: 3rem;
	font-size: 2.5rem;
	color: var(--primary-green);
  }

  .section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary-green);
	margin: 1rem auto 0;
  }

  /* Intro Section Styles */
  .intro-section {
	background: var(--white);
	margin: 4rem auto;
	max-width: 1200px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	position: relative;
  }

  .intro-info {
	flex: 1;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }

  .intro-badge {
	display: inline-block;
	background: var(--primary-green);
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 30px;
	padding: 0.5rem 1.2rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
  }

  .intro-info h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	line-height: 1.3;
  }

  .intro-info p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 1rem;
  }

  .intro-info b {
	color: var(--primary-green);
	font-weight: 700;
  }

  .intro-btn {
	display: inline-flex;
	align-items: center;
	margin-top: 2rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-green);
	background: transparent;
	border: 2px solid var(--primary-green);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
  }

  .intro-btn:hover {
	background: var(--primary-green);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(27,140,59,0.15);
  }

  .intro-media {
	flex: 1;
	background: var(--light-green);
	min-height: 400px;
	position: relative;
	overflow: hidden;
  }

  .intro-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
  }

  .intro-media:hover img {
	transform: scale(1.05);
  }

  /* Updates Section Styles */
  .updates-section {
	background: var(--white);
	margin: 4rem auto;
	max-width: 1200px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 3rem;
  }

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

  .news-list li {
	background: var(--bg-light);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
  }

  .news-list li:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(27,140,59,0.1);
  }

  .news-list li b {
	display: block;
	font-size: 1.2rem;
	color: var(--primary-green);
	margin-bottom: 0.5rem;
  }

  .news-list .date {
	display: inline-block;
	color: var(--text-light);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	background: rgba(27,140,59,0.1);
	padding: 0.3rem 1rem;
	border-radius: 20px;
  }

  .news-list a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
  }

  .news-list a:hover {
	color: var(--accent-green);
  }

  @media (max-width: 768px) {
	.intro-section {
	  flex-direction: column;
	  margin: 2rem 1rem;
	}

	.intro-info {
	  padding: 20px;
	}
	  .governance-card {
		padding: 10px;  
	  }

	.intro-media {
	  min-height: 300px;
	}

	.updates-section {
	  margin: 2rem 1rem;
	  padding: 20px;
	}
  }

  /* About Section Styles */
  .about-section {
	padding: 4rem 0;
	background: var(--bg-light);
  }

  .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
  }

  .content-block {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
  }

  .block-title {
	color: var(--primary-green);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
  }

  .block-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--primary-green);
  }

  /* Vision & Mission Styles */
  .vision-mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
  }

  .vision-box, .mission-box {
	padding: 2rem;
	border-radius: var(--radius);
	background: var(--light-green);
  }

  .vision-box h4, .mission-box h4 {
	color: var(--primary-green);
	margin-bottom: 1rem;
	font-size: 1.3rem;
  }

  .mission-box ul {
	list-style: none;
	padding: 0;
  }

  .mission-box li {
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
  }

  .mission-box li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-yellow);
  }

  /* Timeline Styles */
  .timeline {
	position: relative;
	padding: 2rem 0;
  }

  .timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--primary-green);
  }

  .timeline-item {
	margin-bottom: 2rem;
	padding-left: 2rem;
	position: relative;
  }

  .timeline-item::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent-yellow);
	box-shadow: 0 0 0 3px var(--accent-yellow-light);
  }

  .timeline-item.upcoming::before {
	background: var(--white);
	border: 2px solid var(--accent-yellow);
  }

  .timeline .date {
	color: var(--primary-green);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: inline-block;
	padding: 0.2rem 0.8rem;
	background: var(--accent-yellow-light);
	border-radius: 20px;
  }

  /* Governance Styles */
  .governance-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
  }

  .governance-card {
	padding: 2.5rem;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
  }

  .governance-card:hover {
	transform: translateY(-5px);
  }

  .card-icon {
	color: var(--primary-green);
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
  }

  .governance-card h4 {
	color: var(--primary-green);
	font-size: 1.3rem;
	margin-bottom: 1rem;
  }

  .governance-card p {
	color: var(--text-light);
	line-height: 1.6;
	flex-grow: 1;
  }

  @media (max-width: 768px) {
	.governance-grid {
	  grid-template-columns: 1fr;
	}
  }

  /* Programs & Workstreams Styles */
  .programs-section {
	padding: 2rem 0;
  }

  .programs-intro {
/* 	text-align: center; */
	max-width: 800px;
	margin: 0 auto 3rem;
	color: var(--text-light);
	line-height: 1.8;
  }

  .programs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
  }

  .program-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
  }

  .program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary-green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
  }

  .program-card:hover {
	transform: translateY(-5px);
  }

  .program-card:hover::before {
	transform: scaleX(1);
  }

  .program-header {
	padding: 2rem;
	border-bottom: 1px solid var(--light-green);
	display: flex;
	align-items: center;
	gap: 1.5rem;
  }

  .program-icon {
	width: 60px;
	height: 60px;
	background: var(--light-green);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--primary-green);
	transition: all 0.3s ease;
  }

  .program-card:hover .program-icon {
	background: var(--accent-yellow);
	color: var(--text-dark);
  }

  .program-title {
	flex: 1;
  }

  .program-title h4 {
	color: var(--primary-green);
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
  }

  .program-title p {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.5;
  }

  .program-content {
	padding: 2rem;
  }

  .program-activities {
	list-style: none;
	padding: 0;
	margin: 0;
  }

  .program-activities li {
	display: flex;
	align-items: center;
	padding: 1rem;
	margin-bottom: 0.5rem;
	background: var(--light-green);
	border-radius: 8px;
	transition: all 0.3s ease;
  }

  .program-activities li:hover {
	background: var(--accent-yellow-light);
	color: var(--text-dark);
  }

  .program-activities li i {
	margin-right: 1rem;
	color: var(--primary-green);
	transition: all 0.3s ease;
  }

  .program-activities li:hover i {
	color: var(--accent-yellow);
  }

  .program-footer {
	padding: 1.5rem 2rem;
	border-top: 1px solid var(--light-green);
	text-align: right;
  }

  .program-link {
	color: var(--primary-green);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
  }

  .program-link:hover {
	color: var(--dark-green);
  }

  .program-link i {
	transition: transform 0.3s ease;
  }

  .program-link:hover i {
	transform: translateX(5px);
  }

  @media (max-width: 992px) {
	.programs-grid {
	  grid-template-columns: 1fr;
	  padding: 0 10px;
	}
  }

  @media (max-width: 768px) {
	.program-header {
	  flex-direction: column;
	  text-align: center;
        padding: 20px 5px;
	}
.program-content {
    padding: 10px;
}
	.program-title {
	  text-align: center;
	}
  }

  /* Join Network / Apply for Membership Section */
  .join-network {
	text-align: center;
	margin-top: 0rem;
	padding: 4rem 2rem;
	background: linear-gradient(rgba(27, 140, 59, 0.05), rgba(27, 140, 59, 0.1));
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
  }

  .join-network::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--primary-green), var(--accent-yellow));
  }

  .join-network h4 {
	color: var(--primary-green);
	font-size: 2rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
  }

  .join-network h4::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--accent-yellow);
  }

  .join-network p {
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
	line-height: 1.6;
  }

  .btn-join {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 2.5rem;
	background: var(--primary-green);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-green);
	position: relative;
	overflow: hidden;
  }

  .btn-join::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-yellow);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 0;
  }

  .btn-join span {
	position: relative;
	z-index: 1;
  }

  .btn-join i {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
  }

  .btn-join:hover {
	color: var(--text-dark);
	border-color: var(--accent-yellow);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(27, 140, 59, 0.15);
  }

  .btn-join:hover::before {
	transform: translateX(0);
  }

  .btn-join:hover i {
	transform: translateX(5px);
  }

  .join-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 3rem;
  }

  .join-feature {
	text-align: center;
	flex: 0 1 200px;
  }

  .join-feature i {
	font-size: 2rem;
	color: var(--accent-yellow);
	margin-bottom: 1rem;
  }

  .join-feature h5 {
	color: var(--primary-green);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
  }

  .join-feature p {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
  }

  @media (max-width: 768px) {
	.join-network {
	  padding: 3rem 1.5rem;
	}

	.join-network h4 {
	  font-size: 1.8rem;
	}

	.join-features {
	  flex-direction: column;
	  gap: 2rem;
	}

	.join-feature {
	  flex: none;
	}
  }

  /* About Section Responsive Fixes */
  @media (max-width: 768px) {
    .vision-mission-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .block-title {
      font-size: 1.5rem;
      text-align: center;
    }

    .block-title::after {
      left: 50% !important;
      transform: translateX(-50%);
    }

    .content-block {
      padding: 1.5rem;
      margin: 1rem;
    }

    .timeline-item {
      padding-left: 1.5rem;
    }

    .timeline::before {
      left: 0;
    }

    .timeline-item::before {
      left: -6px;
    }
  }

  /* Cohort Table Responsive Fixes */
  @media (max-width: 768px) {
    .table-controls {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }

    .search-box {
      width: 100%;
      flex: none;
    }

    .table-info {
      text-align: center;
      width: 100%;
      justify-content: center;
    }

    .cohorts-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }

    .cohorts-table th,
    .cohorts-table td {
      min-width: 160px;
      padding: 1rem;
    }

    .cohorts-table th:first-child,
    .cohorts-table td:first-child {
      position: sticky;
      left: 0;
      background: var(--white);
      z-index: 1;
    }

    .cohorts-table th:first-child {
      background: var(--primary-green);
    }

    .cohort-name {
      white-space: normal;
      min-width: 200px;
    }

    .table-responsive {
      margin: 0 -1rem;
      padding: 0 1rem;
      max-height: 500px;
    }
  }

  /* Footer Mobile Alignment Fixes */
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }

    .footer-info {
      text-align: center;
    }

    .footer-logo {
      margin: 0 auto 1.5rem;
    }

    .footer-links {
      text-align: center;
    }

    .footer-links h4 {
      text-align: center;
    }

    .footer-links h4::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-links ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-links a {
      text-align: center;
      padding-left: 0;
    }

    .footer-links a::before {
      display: none;
    }

    .footer-links a:hover {
      padding-left: 0;
      transform: translateY(-3px);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: none;
    }

    .contact-info li {
      justify-content: center;
    }

    .social-links {
      justify-content: center;
    }

    .footer-bottom {
      text-align: center;
      padding: 1.5rem 1rem;
    }
  }

  /* Container Padding Fix */
  @media (max-width: 768px) {
    .container {
      padding: 0 1rem;
    }
  }

section#our-cohorts {
    margin-top: 60px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  /* General Typography */
  body {
    font-size: 14px;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 85vh;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: auto;
    width: 100%;
    max-width: 250px;
  }

  /* Intro Section Mobile */
  .intro-section {
    margin: 2rem 1rem;
  }

  .intro-info {
    padding: 1.5rem;
  }

  .intro-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .intro-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .intro-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .intro-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }

  /* Updates Section Mobile */
  .updates-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .news-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .news-list li b {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .news-list .date {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
  }

  /* About Section Mobile */
  .about-section {
    padding: 2rem 0;
  }

  .content-block {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .block-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  /* Governance Cards Mobile */
  .governance-card {
    padding: 1.25rem;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .governance-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  /* Programs Section Mobile */
  .program-header {
    padding: 1.25rem;
  }

  .program-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .program-title h4 {
    font-size: 1.2rem;
  }

  .program-content {
    padding: 1.25rem;
  }

  .program-activities li {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Join Network Section Mobile */
  .join-network {
    padding: 2rem 1.25rem;
  }

  .join-network h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .join-network p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-join {
    padding: 8px 14px;
    font-size: 0.95rem;
  }

  .join-feature i {
    font-size: 1.5rem;
  }

  .join-feature h5 {
    font-size: 1rem;
  }

  .join-feature p {
    font-size: 0.85rem;
  }

  /* Coming Soon Popup Mobile */
  .comingsoon-popup-content {
    width: 95%;
    margin: 10vh auto;
  }

  .comingsoon-popup-header {
    padding: 1rem;
  }

  .comingsoon-popup-header h3 {
    font-size: 1.2rem;
  }

  .comingsoon-popup-body {
    padding: 1.25rem;
  }

  .comingsoon-popup-body p {
    font-size: 0.95rem;
  }

  .notification-box {
    padding: 1rem;
  }

  .notification-box i {
    font-size: 1.2rem;
  }

  /* Navigation Mobile */
  .nav-links {
    top: 70px;
    padding: 1.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .mobile-menu-btn {
    font-size: 1.3rem;
  }

  /* Header Mobile */
  .header {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 40px;
  }
}

/* Additional Mobile Optimizations for Smaller Screens */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
  }

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

  .intro-info h2 {
    font-size: 1.3rem;
  }
}