:root {
  --primary: #49af45;
  --dark: #1e1e1e;
  --muted: #6b7280;
  --bg-light: #f9fafb;
  --card-radius: 14px;
}

/* Page Hero */
.page-hero {
  margin-top: 6rem;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #49af45, #3a9440);
  color: #fff;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

/* Containers */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Section Title */
.section-title {
  margin: 2.5rem 0 1.5rem;
  font-size: 1.6rem;
  color: var(--dark);
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Hover Overlay */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

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

.image-overlay span {
  background: #fff;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* Pagination */
.pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.pagination a {
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  transition: all .2s ease;
}

.pagination a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination .active a {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  pointer-events: none;
}

/* Lightbox polish */
#lightbox img {
  animation: zoomIn .3s ease;
}

@keyframes zoomIn {
  from { transform: scale(.95); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}

.nav {
  background: rgba(0,0,0,.4);
  border-radius: 50%;
}

	.services-details-area1 {
				margin-top: 7rem;
			}


      .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none; /* 🔥 IMPORTANT */
}

.note{
  color: red;
}

/* Heading + button layout */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 2.5rem 0 1rem;
}

/* Button style */
.activity-link {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.activity-link:hover {
  background: #3a9440;
}

.gallery-info {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}


/* Mobile: move button below heading */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .activity-link {
    margin-top: 8px;
  }

   .page-hero h1 {
    font-size: 1.6rem;
  }

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