/* ═══════════════════════════════════════
   WORK/PORTFOLIO MASTER STYLESHEET
═══════════════════════════════════════ */
body{
  background-color:#050505;
  color:#F8F6F5;
  min-height:100vh;
  margin:0;
  overflow-x:hidden;
  font-family:'Urbanist',sans-serif;
  -webkit-font-smoothing:antialiased;
  -webkit-overflow-scrolling:touch;
  padding-top:92px;
}
.wk-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

/* ═══════════════════════════════════════
   GLOBAL VARIABLES (Top of file)
═══════════════════════════════════════ */
:root {
  --lime: #DBFF49;
  --white: #FFFFFF;
}

/* ═══════════════════════════════════════
   NEW PREMIUM HERO SECTION
═══════════════════════════════════════ */
.wk-hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh; /* Adjust height based on your need */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

/* BG Layers (Blobs & Grid) */
.wk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wk-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  z-index: 1;
}

.wk-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.8) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.8) 0%, transparent 75%);
}

/* Hero Content Typography */
.wk-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.wk-hero-eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0; /* Animated by JS */
}

.wk-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--lime);
}

.wk-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 0.95;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0; /* Animated by JS */
}

.wk-title-line {
  display: flex;
  align-items: baseline;
  gap: 20px;
  overflow: hidden;
}

.wk-title-line--big {
  gap: 0;
}

.wk-word-fill {
  font-size: clamp(72px, 12vw, 140px);
  color: var(--white);
  letter-spacing: -0.03em;
  display: inline-block;
}

.wk-word-outline {
  font-size: clamp(72px, 12vw, 140px);
  color: white;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
  letter-spacing: -0.03em;
  display: inline-block;
}

.wk-hero-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.65;
  opacity: 0; /* Animated by JS */
}

@media (max-width: 480px) {
  .wk-word-fill, .wk-word-outline {
    font-size: clamp(40px, 12vw, 60px);
  }
  .wk-title-line { gap: 8px; }
  .wk-hero-section {
    padding: 110px 0 60px;
  }
}

/* Cinematic Noise overlay to bind the colors together */
.wk-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 2;
}



.wk-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* THINNER FONT WEIGHT: 500 (Matches the reference image exactly) */
.wk-title {
  font-family: 'Bunken Tech Sans SC Wide W01Bd', sans-serif;
  font-weight: 500; 
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Portfolio Badge */
.wk-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 36px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}

.wk-breadcrumb:hover { border-color: rgba(219, 255, 73, 0.4); }

.wk-crumb-btn {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.wk-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400; 
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
}
/* ═══════════════════════════════════════
   BEFORE/AFTER GROWTH SLIDER SECTION
═══════════════════════════════════════ */
.wk-growth-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: transparent; /* FIXED: Lets the global parallax wave show through */
  z-index: 5;
  overflow: hidden;
}

.wk-growth-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.growthSwiper {
  width: 100%;
  padding: 50px 0 80px 0;
}

.swiper-slide {
  width: 100%;
  max-width: 650px; /* Slightly wider to accommodate everything elegantly */
  transition: all 0.4s ease;
}

/* Base Card Styling */
.wk-growth-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.swiper-slide-active .wk-growth-card {
  border-color: rgba(219, 255, 73, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(219, 255, 73, 0.1);
}

.swiper-slide-active .wk-growth-card:hover {
  transform: translateY(-10px);
}

/* NEW: Client Top Bar */
.wk-client-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(219, 255, 73, 0.5);
}

.client-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500; /* As Requested */
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Stats Split Layout */
.wk-split-container {
  display: flex;
  width: 100%;
}

.wk-split-pane {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.before-pane {
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(20,20,20,0.4) 100%);
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.after-pane {
  background: linear-gradient(135deg, rgba(0, 16, 25, 0.9) 0%, rgba(219, 255, 73, 0.05) 100%);
}

.swiper-slide-active .before-pane {
  opacity: 0.9;
}

/* Middle Divider & Bolt */
.wk-split-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-split-divider i {
  position: absolute;
  background: #001019;
  border: 1px solid rgba(255,255,255,0.1);
  color: #DBFF49;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(219, 255, 73, 0.2);
  z-index: 2;
}

/* Typography (Adjusted perfectly to your spec) */
.pane-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500; /* FIXED: Thin, elegant weight */
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
  display: block;
}

.pane-label.glow {
  color: #DBFF49;
  text-shadow: 0 0 10px rgba(219, 255, 73, 0.4);
}

.profile-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 500; /* FIXED: Poppins at normal/medium weight */
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1;
}

.stat .num.text-green {
  color: #DBFF49;
}

.stat .lbl {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500; /* FIXED: Urbanist thin/medium weight */
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* Navigation & Pagination */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.swiper-button-next, .swiper-button-prev {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #DBFF49 !important;
  margin: 0 !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none; 
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #DBFF49;
  color: #001019 !important;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #DBFF49 !important;
  width: 24px !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .wk-split-container {
    flex-direction: column;
  }
  .wk-split-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  }
  .wk-split-pane { padding: 30px 20px; }
}

/* ═══════════════════════════════════════
   SH-PARTNER GRID & CARDS
═══════════════════════════════════════ */
.sh-partner-showcase {
  position: relative;
  width: 100%;
  padding: 120px 0;
  z-index: 5;
}

.sh-partner-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sh-partner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}

.sh-partner-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.sh-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Card Styling */
.sh-partner-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0; /* Handled by GSAP */
}

.sh-partner-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(219, 255, 73, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sh-partner-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: all 0.3s ease;
}

.sh-partner-item:hover .sh-partner-img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.1);
}

.sh-partner-name-fallback {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.sh-partner-item:hover .sh-partner-name-fallback {
  color: #DBFF49;
}


/* ═══════════════════════════════════════
   RESPONSIVE GLASSY MODAL (BUG FIXES)
═══════════════════════════════════════ */
.sh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 16, 25, 0.85); /* Proper Dark Theme Blend */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999; /* Above everything */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  
  /* CRITICAL NAVBAR FIX: Hidden completely so it doesn't block clicks */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.sh-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sh-modal-box {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(219, 255, 73, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  
  /* CRITICAL MOBILE FIX: Limit height and allow internal scrolling */
  max-height: 85vh; 
  display: flex;
  flex-direction: column;
}

.sh-modal-overlay.active .sh-modal-box {
  transform: translateY(0) scale(1);
}

/* Close Button Fixed to the Top Corner of the Box */
.sh-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s ease;
}

.sh-modal-close:hover {
  background: #DBFF49;
  color: #001019;
  transform: rotate(90deg);
}

/* Scrollable Internal Area */
.sh-modal-scroll-area {
  padding: 40px 30px;
  overflow-y: auto;
  border-radius: 24px;
}

/* Custom Scrollbar for the Modal */
.sh-modal-scroll-area::-webkit-scrollbar { width: 6px; }
.sh-modal-scroll-area::-webkit-scrollbar-track { background: transparent; }
.sh-modal-scroll-area::-webkit-scrollbar-thumb { background: rgba(219, 255, 73, 0.3); border-radius: 10px; }

/* Modal Content Styles */
.sh-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.sh-modal-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sh-modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
}

.sh-modal-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.sh-modal-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sh-text-green { color: #DBFF49; }

.sh-stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1;
  margin: 4px 0;
}

.sh-stat-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.sh-modal-strategy-section {
  background: linear-gradient(135deg, rgba(219, 255, 73, 0.05) 0%, transparent 100%);
  border-left: 3px solid #DBFF49;
  padding: 20px;
  border-radius: 0 12px 12px 0;
}

.sh-strategy-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #DBFF49;
  margin: 0 0 10px;
}

.sh-strategy-desc {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 480px) {
  .sh-partner-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-modal-scroll-area { padding: 30px 20px; }
  .sh-stat-value { font-size: 28px; }
}

/* ═══════════════════════════════════════
   SIMPLE CLEAN CTA BUTTON STYLES
═══════════════════════════════════════ */
.sh-simple-cta-section {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.sh-simple-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sh-simple-cta-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 36px);
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Green Clean Button */
.sh-clean-btn {
  background: #DBFF49;
  color: #001019;
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px; /* Fully rounded elegant look */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(219, 255, 73, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Animation: Halki si scale aur right arrow thoda khisakega */
.sh-clean-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(219, 255, 73, 0.3);
}

.sh-clean-btn i {
  transition: transform 0.3s ease;
}

.sh-clean-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .sh-modal-overlay {
    align-items: flex-start;
    padding-top: 75px; /* navbar ki height ke baad shuru ho */
    padding-left: 12px;
    padding-right: 12px;
  }

  .sh-modal-box {
    max-height: calc(100vh - 95px); /* navbar + thoda breathing room */
    border-radius: 18px;
  }

  .sh-modal-scroll-area {
    padding: 25px 18px;
  }

  .sh-modal-close {
    top: 12px;
    right: 12px;
  }
}

/* === FOOTER FIX === */
#sheo-footer {
  position: relative;
  z-index: 10;
}

/* HERO VIDEO BG */

.wk-video-layer{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:0;
}
.wk-bg-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%,-50%);
  filter:brightness(0.8);
  pointer-events:none;
  -webkit-transform:translate(-50%,-50%);
}

/* DARK OVERLAY */

.wk-video-layer::after{
  content:"";
  position:absolute;
  inset:0;

 background:rgba(0,0,0,0.28);
}



/* ── FILTER AREA ──────────────────────────────────── */
.nw-filter-area{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:70px;   /* upr vale section se gap */
  margin-bottom:50px;
  position:relative;
  z-index:20;
}

.nw-filter-bar {
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  padding: 7px 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display:flex;
  align-items: center;
  gap: 18px;
    margin:0 auto;
    justify-content:center;
  align-items:center;

}

.nw-filter-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

/* ── FILTER BUTTONS ───────────────────────────────── */
.nw-filter-btn {
  background: transparent;
  border: none;
  color: rgba(248, 246, 245, 0.5);
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.09em;
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nw-filter-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nw-filter-btn.active {
  background: #DBFF49;
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(219, 255, 73, 0.3);
}

/* Chevron */
.nw-chev {
  font-size: 10px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nw-chev.open {
  transform: rotate(180deg);
}

/* ── GYM DROPDOWN GROUP ───────────────────────────── */
.nw-gym-group {
  position: relative;
}

/* ── DROPDOWN PANEL ───────────────────────────────── */
.nw-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95),
              0 0 0 1px rgba(219, 255, 73, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  z-index: 999;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.28s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.28s ease;
  pointer-events: none;
}

.nw-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: all;
}

/* Dropdown items */
.nw-dd-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  position: relative;
}

.nw-dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 22px;
}

.nw-dd-item.active {
  background: rgba(219, 255, 73, 0.08);
  color: #DBFF49;
  font-weight: 600;
}

.nw-dd-item.active::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: #DBFF49;
  border-radius: 2px;
}


/* ── PORTFOLIO SECTION ────────────────────────────── */
.nw-portfolio-area {
  position: relative;
  z-index: 5;
  padding-bottom: 100px;
}

/* Section visibility toggle */
.nw-section-block {
  display: none;
}
.nw-section-block.active {
  display: block;
}


/* ── GYM BLOCK (one gym at a time) ───────────────── */
.nw-gym-header {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nw-gym-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 64px);
  color: #fff;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1;
}

.nw-gym-tagline {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.nw-gym-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #DBFF49, transparent);
  margin-top: 4px;
  box-shadow: 0 0 12px rgba(219, 255, 73, 0.6);
}


/* ── CARDS DUO ────────────────────────────────────── */
.nw-cards-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}


/* ── POSTER CARD ──────────────────────────────────── */
.nw-poster-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 530px;
  cursor: pointer;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.55s cubic-bezier(0.2, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform;
}

.nw-poster-card:hover {
  transform: translateY(-12px);
  border-color: rgba(219, 255, 73, 0.35);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(219, 255, 73, 0.06);
}

/* Image layer */
.nw-poster-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nw-poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

.nw-poster-card:hover .nw-poster-media img {
  transform: scale(1.08);
}

/* Gradient overlay */
.nw-poster-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.55) 30%,
    rgba(0, 0, 0, 0.15) 60%,
    transparent 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.nw-poster-card:hover .nw-poster-grad {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    transparent 100%
  );
}

/* Type badge — top left */
.nw-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 40px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nw-type-badge.reel-badge {
  background: rgba(219, 255, 73, 0.12);
  border: 1px solid rgba(219, 255, 73, 0.4);
  color: #DBFF49;
}

.nw-type-badge.photo-badge {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.nw-poster-card:hover .nw-type-badge {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Play button — center */
.nw-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 3;
  width: 68px;
  height: 68px;
  background: rgba(219, 255, 73, 0.12);
  border: 2px solid rgba(219, 255, 73, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.4s cubic-bezier(0.2, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.nw-play-btn i {
  color: #DBFF49;
  font-size: 22px;
  margin-left: 4px;
}

.nw-poster-card:hover .nw-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 40px rgba(219, 255, 73, 0.25);
}

/* Info — bottom */
.nw-poster-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 26px;
  z-index: 2;
}

.nw-poster-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 23px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.nw-poster-card:hover .nw-poster-info h3 {
  color: #DBFF49;
}

.nw-poster-info p {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nw-poster-info p i {
  color: #DBFF49;
  font-size: 12px;
}


/* ── GRID SECTIONS (REELS / PHOTOGRAPHY) ─────────── */
.nw-grid-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nw-grid-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.nw-grid-sub {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.02em;
}

/* 3-column media grid */
.nw-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Shorter cards in grid mode */
.nw-media-grid .nw-poster-card {
  height: 400px;
}

.nw-media-grid .nw-poster-info h3 {
  font-size: 17px;
}

.nw-media-grid .nw-poster-info p {
  font-size: 13px;
}


/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .nw-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nw-filter-area {
    padding: 0 0 50px;
  }

  .nw-filter-bar {
  overflow: visible;      
  padding: 6px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: calc(100vw - 48px);
  min-width: unset;
  justify-content: flex-start;
}

.nw-dropdown {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 88vw);
  min-width: unset;
  right: auto;
  z-index: 9999;
}

  .nw-filter-bar::-webkit-scrollbar { display: none; }
  .nw-filter-sep { display: none; }

  .nw-cards-duo {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nw-poster-card { height: 450px; }

  .nw-media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .nw-media-grid .nw-poster-card { height: 330px; }

  .nw-gym-name { font-size: clamp(30px, 8vw, 48px); }
}

@media (max-width: 480px) {
  .nw-media-grid {
    grid-template-columns: 1fr;
  }

  .nw-poster-card { height: 420px; }

  .nw-gym-header { margin-bottom: 30px; }

  .nw-filter-btn {
    padding: 12px 18px;
    font-size: 12px;
  }
}


.sh-clean-btn{
  text-decoration: none;
}