/* Dropdown base */
.site-menu .dropdown {
  position: relative;
}

.site-menu .dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.site-menu .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.site-menu .dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #007bff;
}

/* Desktop hover */
@media (min-width: 992px) {
  .site-menu .dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
}

/* Mobile click -> push down */
@media (max-width: 991px) {
  .dropdown.open .dropdown-menu {
    display: block;
    position: relative;
  }
}

/* all project 1 Gallery grid */
	.gallery-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 15px;
		padding: 20px;
	}

	.gallery-item img {
		width: 100%;
		height: auto;
		border-radius: 10px;
		cursor: pointer;
		transition: transform 0.3s ease;
		box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	}

	.gallery-item img:hover {
		transform: scale(1.05);
	}

	/* Lightbox overlay */
	#lightbox {
		display: none;
		position: fixed;
		z-index: 9999;
		padding: 20px;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background: rgba(0, 0, 0, 0.9);
		text-align: center;
	}

	#lightbox img.lightbox-img {
		max-width: 90%;
		max-height: 80%;
		margin-top: 50px;
		border-radius: 10px;
	}

	/* Lightbox controls */
	#lightbox .close,
	#lightbox .prev,
	#lightbox .next {
		position: absolute;
		color: #fff;
		font-size: 40px;
		cursor: pointer;
		user-select: none;
		transition: 0.3s;
	}

	#lightbox .close {
		top: 20px;
		right: 30px;
	}

	#lightbox .prev {
		top: 50%;
		left: 30px;
		transform: translateY(-50%);
	}

	#lightbox .next {
		top: 50%;
		right: 30px;
		transform: translateY(-50%);
	}

	#lightbox .prev:hover,
	#lightbox .next:hover,
	#lightbox .close:hover {
		color: #e63946;
	}

	.achievements-section {
		margin: 40px 0;
		font-family: "Segoe UI", Roboto, sans-serif;
	}

	.achievements-section .heading {
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 30px;
		color: #222;
		text-align: center;
	}

	.achievements-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}

	.achievement-card {
		background: #fff;
		border-radius: 12px;
		padding: 20px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
		transition: transform 0.3s ease;
	}

	.achievement-card:hover {
		transform: translateY(-5px);
	}

	.achievement-card h4 {
		margin-bottom: 12px;
		font-size: 18px;
		color: #e63946;
		/* NGO red */
		font-weight: 600;
	}

	.achievement-card p {
		color: #444;
		line-height: 1.6;
	}

	.highlight {
		background: #e63946;
		color: #fff;
		padding: 3px 8px;
		border-radius: 6px;
		font-weight: 600;
	}