<style>
/* ============================================================
   PORTFOLIO SHOWCASE SECTION — Dark Theme
============================================================ */
#portfolio-showcase {
  position: relative;
  background: #0d0e0c;
  padding: 100px 0 80px;
  overflow: hidden;
  z-index: 1;
}
/* Decorative glow blobs */
#portfolio-showcase::before {
  content: '';
  position: absolute;
  top: -140px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(217,244,95,0.07) 0%, rgba(217,244,95,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#portfolio-showcase::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(217,244,95,0.05) 0%, rgba(217,244,95,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ---- Section Head ---- */
.pf-section-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,244,95,0.08);
  border: 1px solid rgba(217,244,95,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D9F45F;
  margin-bottom: 18px;
}
.pf-badge .dot {
  width: 7px; height: 7px;
  background: #D9F45F;
  border-radius: 50%;
  display: inline-block;
  animation: pf-pulse 1.8s ease-in-out infinite;
}
@keyframes pf-pulse {
  0%,100%{transform:scale(1);opacity:1;}
  50%{transform:scale(1.5);opacity:0.5;}
}
.pf-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  color: #f0f0ee;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pf-main-title .accent {
  position: relative;
  display: inline-block;
  color: #D9F45F;
}
.pf-main-title .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: #D9F45F;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: pf-underline 0.9s 0.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes pf-underline {
  to{transform:scaleX(1);}
}
.pf-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: rgba(240,240,238,0.55);
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.75;
}
.pf-divider {
  width: 40px; height: 3px;
  background: #D9F45F;
  border-radius: 10px;
  margin: 14px auto 0;
}

/* ---- Filter Tabs ---- */
.pf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.pf-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,240,238,0.6);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 9px 22px;
  cursor: pointer;
  transition: all 0.28s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.pf-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #D9F45F;
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.pf-tab:hover::before,
.pf-tab.active::before { transform: scaleX(1); }
.pf-tab:hover,
.pf-tab.active {
  color: #0d0e0c;
  border-color: #D9F45F;
  background: transparent;
  box-shadow: 0 4px 20px rgba(217,244,95,0.2);
}

/* ---- Masonry Grid ---- */
.pf-grid-wrap {
  position: relative;
  z-index: 2;
}
.pf-grid {
  column-count: 3;
  column-gap: 22px;
}
@media(max-width:991px){ .pf-grid{column-count:2;} }
@media(max-width:575px){ .pf-grid{column-count:1;} }

.pf-item {
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pf-item.pf-visible {
  opacity: 1;
  transform: translateY(0);
}
.pf-item.pf-hidden {
  display: none;
}
.pf-item-wide {
  column-span: all;
}
@media(max-width:575px){ .pf-item-wide{column-span:unset;} }

/* ---- Card Inner ---- */
.pf-item-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(.22,1,.36,1), border-color 0.35s ease;
  background: #12140f;
  will-change: transform;
}
.pf-item-inner:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 2px #D9F45F;
  border-color: #D9F45F;
  transform: translateY(-6px) scale(1.01);
}
.pf-item-inner img.pf-thumb {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s cubic-bezier(.22,1,.36,1);
  opacity: 0.92;
}
.pf-item-inner:hover img.pf-thumb { transform: scale(1.065); opacity: 1; }

/* ---- Hover Overlay ---- */
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,9,7,0.95) 0%, rgba(8,9,7,0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  border-radius: 16px;
}
.pf-item-inner:hover .pf-overlay { transform: translateY(0); }

.pf-ov-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #D9F45F; margin-bottom: 5px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease;
}
.pf-ov-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; color: #f0f0ee;
  margin-bottom: 6px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s 0.15s ease, transform 0.3s 0.15s ease;
}
.pf-ov-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; color: rgba(240,240,238,0.62);
  margin-bottom: 14px; line-height: 1.6;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s 0.2s ease, transform 0.3s 0.2s ease;
}
.pf-ov-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #D9F45F; text-decoration: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s 0.25s ease, transform 0.3s 0.25s ease;
}
.pf-ov-link svg { transition: transform 0.25s ease; }
.pf-ov-link:hover svg { transform: translateX(4px); }
.pf-item-inner:hover .pf-ov-cat,
.pf-item-inner:hover .pf-ov-title,
.pf-item-inner:hover .pf-ov-desc,
.pf-item-inner:hover .pf-ov-link {
  opacity: 1; transform: translateY(0);
}

/* ---- Ripple ---- */
@keyframes pf-ripple {
  from{transform:scale(0);opacity:0.35;}
  to{transform:scale(4);opacity:0;}
}
.pf-ripple-el {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(217,244,95,0.3);
  pointer-events: none;
  animation: pf-ripple 0.65s ease-out forwards;
  transform-origin: center;
  margin-left: -30px; margin-top: -30px;
  z-index: 20;
}

/* ---- CTA ---- */
.pf-cta-wrap {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.pf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(217,244,95,0.1);
  color: #D9F45F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(217,244,95,0.35);
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.35s ease;
  z-index: 0;
}
.pf-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #D9F45F;
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.pf-cta-btn:hover::before { transform: scaleX(1); }
.pf-cta-btn:hover {
  color: #0d0e0c;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(217,244,95,0.25);
  border-color: #D9F45F;
}
.pf-cta-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(217,244,95,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.pf-cta-btn:hover .pf-cta-icon {
  background: rgba(13,14,12,0.15);
  transform: translateX(5px);
}

/* Section separator line */
.pf-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,244,95,0.15), transparent);
  margin: 0 60px;
}