:root{
  --primary-base: #000000;
  --primary-accent: #8EFF00;
  --secondary-light: #FFFFFF;
  --tertiary-accent: #404040;
  --subtle-neutral: #CDCDCD;
  --radius: 12px;
  --gap: 22px;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Roboto',sans-serif;
  background:var(--primary-base);
  color:var(--secondary-light);
  -webkit-font-smoothing:antialiased;
}

/* Links */
a{color:inherit; text-decoration:none}

/* ===== Navbar Box Style (PixelBug Theme) ===== */
.navbar .nav-link.nav-box {
  border: 1px solid #404040; /* warm dark grey */
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 500;
  font-size: 0.95rem;
}

.navbar .nav-link.nav-box:hover {
  color: #8EFF00 !important; /* lime accent */
  border-color: #8EFF00;
  background-color: rgba(142, 255, 0, 0.1);
  box-shadow: 0 0 10px rgba(142, 255, 0, 0.4);
  transform: translateY(-2px);
}

/* ===== Contact Button (Primary Accent) ===== */
.navbar .nav-link.contact-box {
  background-color: #8EFF00; /* Lime Accent */
  color: #000000 !important;
  border: 1px solid #8EFF00;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .nav-link.contact-box:hover {
  background-color: #000000;
  color: #8EFF00 !important;
  box-shadow: 0 0 15px rgba(142, 255, 0, 0.6);
  transform: translateY(-2px);
}

/* ===== Light Mode Adjustments ===== */
body.light-mode .navbar .nav-link.nav-box {
  color: #000000 !important;
  border-color: #CDCDCD;
  background-color: #FFFFFF;
}

body.light-mode .navbar .nav-link.nav-box:hover {
  border-color: #8EFF00;
  color: #8EFF00 !important;
  background-color: #F9F9F9;
  box-shadow: 0 0 10px rgba(142, 255, 0, 0.4);
}

body.light-mode .navbar .nav-link.contact-box {
  background-color: #8EFF00;
  color: #000000 !important;
  border-color: #8EFF00;
}

body.light-mode .navbar .nav-link.contact-box:hover {
  background-color: #000000;
  color: #8EFF00 !important;
}


/* Theme toggle */
.switch{position:relative;display:inline-block;width:50px;height:26px}
.switch input{display:none}
.slider{position:absolute;left:0;top:0;right:0;bottom:0;background:rgba(255,255,255,0.08);border-radius:26px;transition:0.3s}
.slider:before{content:"";position:absolute;height:20px;width:20px;left:3px;bottom:3px;background:#fff;border-radius:50%;transition:0.3s}
.switch input:checked + .slider{background:var(--primary-accent);box-shadow:0 0 12px rgba(142,255,0,0.22)}
.switch input:checked + .slider:before{transform:translateX(24px)}

/* HERO - cinematic centered */
.hero-section{position:relative;height:100vh;display:block;overflow:hidden}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.7));z-index:1}
.hero-inner{position:relative;z-index:2;height:100%}
.hero-copy{max-width:980px}
.hero-title{
  font-weight:700;
  font-size:clamp(2rem,6vw,4rem);
  color:var(--secondary-light);
  letter-spacing:0.6px;
  margin:0 0 12px 0;
  text-transform:none;
}
.hero-lead{color:var(--subtle-neutral);font-size:clamp(1rem,1.6vw,1.2rem);margin:0}

/* Buttons (glow) */
/* ===============================
   PRIMARY CTA BUTTON – PIXELBUG
================================ */

.btn-glow {
  position: relative;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  color: var(--secondary-light);
  background: rgba(142,255,0,0.06);
  border: 2px solid rgba(142,255,0,0.35);
  box-shadow: 
    0 0 0 rgba(142,255,0,0),
    inset 0 0 0 rgba(142,255,0,0);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Soft glow ring */
.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(142,255,0,0.45),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* HOVER EFFECT */
.btn-glow:hover {
  color: #000;
  background: var(--primary-accent);
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(142,255,0,0.35),
    0 0 18px rgba(142,255,0,0.25);
}

/* Glow pulse */
.btn-glow:hover::before {
  opacity: 0.6;
}

/* Click effect */
.btn-glow:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(142,255,0,0.45);
}

/* scroll indicator */
.scroll-indicator{position:absolute;left:50%;bottom:36px;transform:translateX(-50%);z-index:3}
.scroll-indicator .arrow{display:inline-block;width:56px;height:56px;border-radius:50%;border:2px solid var(--primary-accent);display:flex;align-items:center;justify-content:center;color:var(--secondary-light);box-shadow:0 6px 28px rgba(0,0,0,0.5)}

/* Intro */
.intro-section{padding:64px 0}
.section-title{color:var(--primary-accent);font-size:clamp(1.6rem,3vw,2.4rem);display:inline-block;margin-bottom:6px;text-shadow:0 0 6px rgba(142,255,0,0.06)}
.section-copy{color:var(--subtle-neutral);max-width:720px}

/* Stats */
.stat{padding:10px}
.stat-num{font-weight:700;color:var(--secondary-light);font-size:1.3rem}
.stat-label{color:var(--subtle-neutral);font-size:0.9rem}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 26px 20px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: 0 20px 40px rgba(142,255,0,0.15);
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--subtle-neutral);
}

/* Mobile */
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
  }
}


/* Featured cards */
.card-feature{position:relative;display:block;border-radius:10px;overflow:hidden}
.card-feature img{width:100%;height:360px;object-fit:cover;display:block}
.card-feature-overlay{position:absolute;inset:0;display:flex;align-items:flex-end;padding:28px;background:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.6));}
.card-feature-overlay h4{margin:0;color:var(--secondary-light);text-shadow:0 0 10px rgba(0,0,0,0.4)}

/* Projects - Masonry container */
.masonry-grid{
  column-count:2;
  column-gap:var(--gap);
  width:100%;
}
.masonry-item{
  display:inline-block;
  width:100%;
  margin:0 0 var(--gap) 0;
}

/* tile */
.tile{
  position:relative;overflow:hidden;border-radius:10px;background:#0a0a0a;cursor:pointer;transition:transform .35s ease, box-shadow .35s ease;
  border:1px solid rgba(255,255,255,0.03);
}
.tile img{width:100%;height:auto;display:block;transition:transform .5s ease}
.tile-meta{position:absolute;left:16px;bottom:16px;color:var(--secondary-light);background:linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));padding:14px;border-radius:8px}
.tile-meta h4{margin:0;font-size:1.05rem}
.tile-meta p{margin:4px 0 0 0;color:var(--subtle-neutral);font-size:0.9rem}
.tile:hover{transform:translateY(-8px);box-shadow:0 30px 60px rgba(0,0,0,0.6)}
.tile:hover img{transform:scale(1.07)}

/* Filters */
.filter-controls{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-bottom:10px}
.filter-btn{
  border-radius:28px;padding:8px 16px;border:2px solid rgba(142,255,0,0.12);background:transparent;color:var(--subtle-neutral);cursor:pointer;transition:all .25s
}
.filter-btn:hover{border-color:var(--primary-accent);color:var(--primary-accent);transform:translateY(-4px)}
.filter-btn.active{background:var(--primary-accent);color:var(--primary-base);border-color:var(--primary-accent);box-shadow:0 10px 36px rgba(142,255,0,0.12)}

/* Modal */
.modal-content.bg-black{background:var(--primary-base)}
.object-cover{object-fit:cover;height:100%}

/* Footer */
footer {
  background: var(--primary-base);
  color: var(--subtle-neutral);
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,0.03);
  text-align: center;
  position: relative;
  z-index: 0;
}

footer a {
  color: var(--primary-accent);
}


/* Animations */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
[data-aos]{will-change:transform,opacity}

/* Light mode */
body.light-mode{
  background:#f8f9fa;color:#111
}
body.light-mode .tile-meta{background:rgba(255,255,255,0.9);color:#111}
body.light-mode .filter-btn{border-color:rgba(0,0,0,0.08);color:#333}

/* Responsive */
@media (max-width: 991px){
  .masonry-grid{column-count:1}
  .card-feature img{height:260px}
  .hero-lead{font-size:1rem}
  .hero-title{font-size:2.2rem}
}


/* ===============================
   HERO SECTION (CLEAN & SAFE)
================================ */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Media */
.hero-bg-video,
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Image OFF by default */
.hero-bg-image {
  display: none;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* FINAL FORCE (ADD AT END) */
.hero-bg-video {
  display: block !important;
}
.hero-bg-image {
  display: none !important;
}

.hero-copy {
  max-width: 900px;
  padding: 0 20px;
}

/* Title */
.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
  color: var(--secondary-light);
  text-shadow: 0 0 18px rgba(0,0,0,0.8);
}

.hero-highlight {
  color: var(--primary-accent);
}

/* Subtitle */
.hero-lead {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--subtle-neutral);
}

/* Mobile text tuning */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
}

/* ===== Scroll Indicator (Elegant + Animated) ===== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 3;
  animation: floatDown 2.5s ease-in-out infinite;
}

.scroll-indicator .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  font-size: 1.5rem;
  background: rgba(142, 255, 0, 0.06);
  box-shadow: 0 0 20px rgba(142, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.scroll-indicator .arrow:hover {
  background-color: rgba(142, 255, 0, 0.15);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(142, 255, 0, 0.35);
}

/* Floating animation for arrow */
@keyframes floatDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ===== Info Blocks Section ===== */
.info-blocks-section {
  background-color: var(--primary-base);
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 35px 25px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-accent);
  margin-bottom: 15px;
  display: inline-block;
}

.info-card h4 {
  color: var(--secondary-light);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--subtle-neutral);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Hover Effects */
.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: 0 20px 40px rgba(142, 255, 0, 0.15);
}

.info-card:hover i {
  text-shadow: 0 0 10px rgba(142, 255, 0, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
  .info-card {
    padding: 25px 20px;
  }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: auto;
  aspect-ratio: 4 / 5; /* portrait friendly */
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000; /* fills empty space nicely */
  transition: transform 0.5s ease, filter 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
  filter: brightness(60%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--primary-accent); /* Lime green title */
  font-weight: 600;
  text-shadow: 0 0 8px rgba(142,255,0,0.25);
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: var(--secondary-light);
  opacity: 0.85;
}

.section-underline {
  width: 80px;
  height: 3px;
  background: var(--primary-accent);
  margin: 10px auto 0;
  opacity: 0.4;
  border-radius: 2px;
}

/* Enhanced Card Hover Effects */
.enhanced-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  border: 1px solid rgba(142,255,0,0.15);
}

/* Subtle idle glow */
.enhanced-card img {
  transition: transform 0.45s ease;
}

/* Hover lift + zoom */
.enhanced-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(142,255,0,0.18);
  border-color: rgba(142,255,0,0.45);
}

.enhanced-card:hover img {
  transform: scale(1.08);
  filter: brightness(85%);
}

/* Ripple click effect */
.enhanced-card {
  position: relative;
  overflow: hidden;
}

.enhanced-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(142,255,0,0.18) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.enhanced-card:active::after {
  opacity: 1;
  transform: scale(1.6);
}

/* =============================
   FEATURED CARD HOVER ENHANCEMENTS
============================= */

.feature-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 12px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.35s ease;
}

/* Hover effects */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.6);
  border-color: rgba(142,255,0,0.35); /* Lime border glow */
}

.feature-card:hover img {
  transform: scale(1.08);
  filter: brightness(75%);
}

/* Category badge */
.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-accent);
  border: 1px solid rgba(142,255,0,0.4);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.35s ease;
}

.feature-card:hover .category-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow icon on hover */
.feature-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(142,255,0,0.15);
  border: 1px solid rgba(142,255,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-accent);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.feature-card:hover .feature-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Click ripple */
.feature-card:active {
  transform: scale(0.97);
  box-shadow: 0 0 20px rgba(142,255,0,0.4);
}
/* ===============================
   FIX: FEATURED CARD — TEXT INSIDE IMAGE
   =============================== */

.card-feature {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.card-feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}

/* hover zoom + glow */
.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.55);
}
.card-feature:hover img {
  transform: scale(1.12);
  filter: brightness(60%);
}

/* Overlay that holds text + arrow */
.card-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;    /* center vertically */
  align-items: center;        /* center horizontally */
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

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

/* Text inside image */
.card-feature-overlay h4 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--secondary-light);
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* category badge (top left) */
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--primary-accent);
  border: 1px solid rgba(142,255,0,0.4);
  opacity: 0;
  transform: translateY(-8px);
  transition: all .35s ease;
}

.card-feature:hover .card-badge {
  opacity: 1;
  transform: translateY(0);
}

/* arrow bottom-right */
.card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(142,255,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-accent);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(12px);
  transition: all .35s ease;
}

.card-feature:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow icon animation */
.card-arrow i {
  transition: transform .4s ease;
}
.card-feature:hover .card-arrow i {
  transform: translateX(6px);
}

/* ===============================
   ELEGANT STORY ANIMATION (PIXELBUG)
================================ */

.brand-story-section {
  position: relative;
  background: radial-gradient(
    circle at top,
    rgba(142,255,0,0.05),
    transparent 65%
  );
  
  overflow: hidden;
}

/* Soft moving glow */
.brand-story-section::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(142,255,0,0.08), transparent 70%);
  transform: translateX(-50%);
  animation: slowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes slowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

/* Story text */
.story-line {
  color: var(--subtle-neutral);
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 28px;
}

/* Highlight question */
.story-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-accent);
  text-shadow: 0 0 18px rgba(142,255,0,0.35);
}

/* Subtle hover glow (desktop only) */
@media (hover: hover) {
  .story-line:hover {
    color: var(--secondary-light);
    transition: color 0.3s ease;
  }
}

/* Light mode */
body.light-mode .brand-story-section {
  background: #f8f9fa;
}

body.light-mode .story-line {
  color: #333;
}

body.light-mode .story-highlight {
  color: #6abf00;
}

/* Mobile polish for story section */
@media (max-width: 575px) {
  .story-line {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .story-highlight {
    font-size: 1.1rem;
  }
}

/* ===============================
   STORY CARD (ELEGANT BLOCK)
================================ */

.story-card {
  position: relative;
  padding: 45px 40px;
  border-radius: 16px;

  /* Glass / cinematic feel */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(142,255,0,0.05);

  backdrop-filter: blur(6px);
}

/* Soft lime accent glow */
.story-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(142,255,0,0.25),
    transparent
  );
  opacity: 0.15;
  pointer-events: none;
}

/* Story text */
.story-line {
  color: var(--subtle-neutral);
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 26px;
}

/* Highlight question */
.story-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-accent);
  text-shadow: 0 0 18px rgba(142,255,0,0.35);
}

/* Hover polish (desktop only) */
@media (hover: hover) {
  .story-card:hover {
    box-shadow:
      0 40px 80px rgba(0,0,0,0.75),
      inset 0 0 0 1px rgba(142,255,0,0.12);
    transition: box-shadow 0.4s ease;
  }
}

/* Mobile adjustments */
@media (max-width: 575px) {
  .story-card {
    padding: 30px 22px;
  }

  .story-line {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .story-highlight {
    font-size: 1.1rem;
  }
}

/* Light mode support */
body.light-mode .story-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

body.light-mode .story-line {
  color: #333;
}

/* ===============================
   CTA – BALANCED & PREMIUM
================================ */

/* ===============================
   CTA – FINAL CENTERED FIX
================================ */

.cta-section {
  padding: 100px 5vw;
  background: #000;
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap; /* 🔥 keeps single line */
}

.cta-title i {
  font-size: 1.1em;
}

.cta-desc {
  max-width: 600px;
  font-size: 0.95rem;
  color: var(--subtle-neutral);
}

.cta-btn {
  margin-top: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-btn span {
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary-accent);
  color: #000;
}

.cta-btn:hover span {
  transform: translateX(6px);
}

/* Mobile fix */
@media (max-width: 768px) {
  .cta-title {
    flex-wrap: wrap;
  }
}

.footer {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #000;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px; /* space between text & icon */
}

.footer-text {
  color: var(--subtle-neutral);
  font-size: 0.9rem;
}

/* Instagram icon */
.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(142,255,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.1rem;
  background: rgba(142,255,0,0.06);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: var(--primary-accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(142,255,0,0.4);
}

/* ===============================
   FIX: LONG TEXT ON GALLERY IMAGES
   =============================== */

.gallery-overlay {
  justify-content: flex-end; /* move text to bottom */
  padding: 18px;
  text-align: center;
}

/* Title */
.gallery-overlay h4 {
  max-width: 90%;
  margin: 0 auto 6px auto;
  font-size: 1.05rem;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

/* Description */
.gallery-overlay p {
  max-width: 90%;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Mobile tuning */
@media (max-width: 576px) {
  .gallery-overlay h4 {
    font-size: 0.95rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* ===============================
   TEAM SECTION – PIXELBUG
================================ */

.team-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(142,255,0,0.15);
  border-color: rgba(142,255,0,0.4);
}

.team-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #000;
}

.team-body {
  padding: 24px;
}

.team-body h5 {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-body span {
  display: block;
  color: #8EFF00;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.team-body p {
  color: #CDCDCD;
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-social {
  display: inline-flex;
  margin-top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(142,255,0,0.45);
  align-items: center;
  justify-content: center;
  color: #8EFF00;
  transition: all 0.3s ease;
}

.team-social:hover {
  background: #8EFF00;
  color: #000;
  box-shadow: 0 0 18px rgba(142,255,0,0.5);
}
/* Fix cropping only for Shubham Pardeshi image */
.team-img-focus {
  object-position: center top;
}

/* ===============================
   TEAM SECTION – MOBILE POLISH
================================ */
@media (max-width: 576px) {

  .team-img {
    height: 260px; /* better proportions on mobile */
  }

  .team-body {
    padding: 18px;
  }

  .team-body p {
    font-size: 0.85rem;
  }
}

/* ===============================
   HERO TEXT COLOR OVERRIDE
================================ */

/* Hero title main text */
.hero-section .hero-title {
  color: #fffc00;
}

/* Highlight words inside hero title */
.hero-section .hero-highlight {
  color: #fffc00;
}

/* Hero subtitle */
.hero-section .hero-lead {
  color: rgba(255, 252, 0, 0.85);
}

.hero-section .hero-title {
  text-shadow:
    0 0 12px rgba(255,252,0,0.25),
    0 0 28px rgba(255,252,0,0.15);
}

.hero-section .hero-lead {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-section .hero-lead {
    margin-bottom: 22px;
  }
}

/* ===============================
   HERO TEXT – CLEAN RISE (NO GLOW)
================================ */

.hero-section .hero-copy {
  animation: heroRiseClean 1s ease-out forwards;
}

/* Clean keyframes */
@keyframes heroRiseClean {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(-40px); /* final elevated position */
  }
}

@media (max-width: 768px) {
  @keyframes heroRiseClean {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(-25px);
    }
  }
}

.hero-section .hero-copy {
  animation-delay: 0.15s;
}
.team-section .row + .row {
  margin-top: 12px;
}

/* ===============================
   SIMPLE PAGE HEADING (PROJECT STYLE)
================================ */

.page-heading-section {
  padding: 120px 0 60px;
  background: #000;
}

.page-heading-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-accent); /* lime green */
  margin-bottom: 10px;
}

.page-heading-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-accent);
  margin: 0 auto 14px;
  border-radius: 2px;
  opacity: 0.8;
}

.page-heading-subtitle {
  color: var(--subtle-neutral);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================
   ARTIST CARD – PERFECT POSTER LAYOUT
================================ */

/* Card wrapper */
.artist-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ===============================
   ARTIST IMAGE – FILLED & CLEAN
================================ */

/* ===============================
   IMAGE — NEVER CUT CONTENT
================================ */

/* ===============================
   ARTIST COVER – CUBE STYLE
================================ */

.artist-cover {
  width: 100%;
  aspect-ratio: 1 / 1.15;   /* 🔥 more square than poster */
  background: radial-gradient(
    circle at top,
    #1a1a1a,
    #000 75%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;           /* 🔥 gives breathing room */
}


/* Image always fully visible */
.artist-cover img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;     /* ✅ no cropping */
  object-position: center;
}




/* Hover lift */
.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ===============================
   OVERLAY
================================ */

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.75)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 18px;
  text-align: center;

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Desktop hover */
@media (hover: hover) {
  .artist-card:hover .artist-overlay {
    opacity: 1;
  }
}

/* Mobile: overlay ALWAYS visible */
@media (hover: none) {
  .artist-overlay {
    opacity: 1;
  }
}

/* Artist name */
.artist-overlay h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

/* View gallery button */
.view-gallery {
  font-size: 0.85rem;
  color: var(--primary-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(142,255,0,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
}

/* ===============================
   GALLERY INDICATOR
================================ */

/* Artists WITH folders */
.artist-card.has-gallery .view-gallery {
  display: inline-flex;
}

/* Artists WITHOUT gallery */
.artist-card:not(.has-gallery) .view-gallery {
  display: none;
}
/* ===============================
   THEME BORDER & GLOW
================================ */

.artist-card {
  border-radius: 18px;
  border: 1px solid rgba(142,255,0,0.25);
  background: #000;
  overflow: hidden;
  transition: all 0.35s ease;
}

@media (hover: hover) {
  .artist-card:hover {
    box-shadow:
      0 0 18px rgba(142,255,0,0.25),
      0 20px 45px rgba(0,0,0,0.65);
  }
}


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


@media (max-width: 768px) {
  .artist-cover {
    aspect-ratio: 1 / 1.25;
    padding: 14px;
  }
}

/* ======================================
   AOS MOBILE & TABLET FIX (IMPORTANT)
====================================== */

/* Tablets & Mobile */
@media (max-width: 991px) {

  /* Kill horizontal slide on small screens */
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translateY(28px) !important;
  }

  /* Initial hidden state */
  [data-aos] {
    opacity: 0;
  }

  /* Animate vertically only */
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) !important;
  }
}

/* ===============================
   ARTIST GALLERY – EXPAND ON HOVER
================================ */

.artist-gallery-section {
  padding: 80px 0;
  background: #000;
  text-align: center;
}

.artist-name {
  color: var(--primary-accent);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* Gallery wrapper */
.gallery {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 5vw;
}

/* Images */
.gallery img {
  width: 10%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(142,255,0,0.35);
  transition: all 0.5s ease;
  cursor: pointer;
}

/* Hover expand */
.gallery img:hover {
  width: 50%;
  box-shadow: 0 0 25px rgba(142,255,0,0.5);
  border-color: var(--primary-accent);
}

/* ===============================
   MOBILE / TABLET SUPPORT
================================ */

/* On touch devices, show larger images by default */
@media (hover: none) {
  .gallery img {
    width: 28%;
  }

  .gallery img:active {
    width: 60%;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .gallery {
    height: 260px;
  }
}
/* ===== GALLERY EXPAND EFFECT ===== */
.gallery {
  display: flex;
  gap: 12px;
  height: 320px;
}

.gallery img {
  width: 10%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery img:hover {
  width: 50%;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .gallery {
    height: auto;
    flex-wrap: wrap;
  }

  .gallery img {
    width: 48%;
    height: 200px;
  }

  .gallery img:hover {
    width: 48%;
  }
}

/* Modal title */
.artist-modal-title {
  color: #8EFF00;
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* ===============================
   VIEW GALLERY BUTTON – SMART BEHAVIOR
================================ */

/* Base button (ALWAYS visible) */
.view-gallery {
  position: absolute;
  bottom: 18px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;

  color: var(--primary-accent);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(142,255,0,0.6);

  border-radius: 999px;
  cursor: pointer;

  box-shadow: 0 0 10px rgba(142,255,0,0.25);
  transition: all 0.35s ease;
}

/* ===============================
   DESKTOP HOVER – MOVE TO CENTER
================================ */
@media (hover: hover) {

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

  .artist-card:hover .view-gallery {
    bottom: 50%;
    transform: translateY(50%);

    background: var(--primary-accent);
    color: #000;

    box-shadow:
      0 0 18px rgba(142,255,0,0.7),
      0 18px 40px rgba(142,255,0,0.35);
  }

  .artist-card:hover .view-gallery i {
    transform: scale(1.15);
  }
}

/* ===============================
   MOBILE / TABLET – ALWAYS CENTERED
================================ */
@media (hover: none) {

  .artist-overlay {
    opacity: 1;
  }

  .view-gallery {
    bottom: 50%;
    transform: translateY(50%);
    background: var(--primary-accent);
    color: #000;
  }
}

/* ===============================
   TAP FEEDBACK
================================ */
.view-gallery:active {
  transform: translateY(50%) scale(0.95);
}

/* ===============================
   PNG-ONLY ARTIST NAME STYLING
================================ */

.artist-overlay.png-only h4 {
  color: #8EFF00; /* PixelBug theme green */
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  text-shadow: 
    0 0 8px rgba(142, 255, 0, 0.25),
    0 0 16px rgba(142, 255, 0, 0.15);
  transition: all 0.35s ease;
}

/* Subtle underline glow */
.artist-overlay.png-only h4::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  margin: 6px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #8EFF00,
    transparent
  );
  transition: width 0.4s ease;
}

/* Hover / focus highlight */
.artist-card:hover .artist-overlay.png-only h4 {
  transform: translateY(-2px);
  text-shadow:
    0 0 12px rgba(142, 255, 0, 0.45),
    0 0 24px rgba(142, 255, 0, 0.25);
}

.artist-card:hover .artist-overlay.png-only h4::after {
  width: 60%;
}
/* ===============================
   ARTIST GALLERY CLOSE BUTTON
================================ */

.artist-modal .btn-close {
  background: none;
  opacity: 1;
  filter: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(138, 255, 0, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

/* Custom X using pseudo element */
.artist-modal .btn-close::before,
.artist-modal .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #8aff00; /* PixelBug green */
  transform-origin: center;
}

.artist-modal .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.artist-modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover effect */
.artist-modal .btn-close:hover {
  background: rgba(138, 255, 0, 0.12);
  box-shadow: 0 0 12px rgba(138, 255, 0, 0.6);
  transform: rotate(90deg);
}

/* Focus fix (Bootstrap annoyance) */
.artist-modal .btn-close:focus {
  box-shadow: none;
  outline: none;
}

/* ======================================
   VISUALIZATION PAGE — SAFE & ISOLATED
   (Will NOT affect other pages)
====================================== */

.visualization-page {
  background: #000;
  padding: 120px 16px 100px;
}

/* ---------- PAGE HEADER ---------- */

.visualization-page .page-header {
  text-align: center;
  margin-bottom: 90px;
}

.visualization-page .page-header-title {
  color: #8EFF00;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.visualization-page .page-header-underline {
  width: 60px;
  height: 3px;
  background: #8EFF00;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.visualization-page .page-header-subtitle {
  color: #bdbdbd;
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- EACH VISUALIZATION BLOCK ---------- */

.visualization-page .viz-block {
  text-align: center;
  margin-bottom: 120px;
}

/* Folder / Artist title */
.visualization-page .viz-title {
  color: #8EFF00;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* ---------- SLIDER LAYOUT ---------- */

.visualization-page .viz-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image frame */
.visualization-page .viz-image {
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #8EFF00;
  box-shadow: 0 0 30px rgba(142,255,0,0.35);
  background: #000;
}

/* Images */
.visualization-page .viz-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.visualization-page .viz-image img.active {
  opacity: 1;
}


/* ======================================
   HARD ISOLATION: VISUALIZATION PAGE
   (Kills all old gallery / hover logic)
====================================== */

.visualization-page .gallery,
.visualization-page .gallery * {
  all: unset;
  box-sizing: border-box;
}

/* Restore layout */
.visualization-page .gallery {
  display: block;
}


/* ======================================
   VISUALIZATION – IMAGE + ARROWS ON IMAGE
   SAFE OVERRIDE (NO BREAKS)
====================================== */

.visualization-page .viz-slider {
  position: relative;
  display: flex;
  justify-content: center;
}

/* BIGGER IMAGE */
.visualization-page .viz-image {
  width: min(1100px, 96vw);   /* 🔥 increased size */
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #8EFF00;
  box-shadow: 0 0 40px rgba(142,255,0,0.35);
  background: #000;
}

/* Images */
.visualization-page .viz-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.visualization-page .viz-image img.active {
  opacity: 1;
}

/* ======================
   ARROWS ON IMAGE SIDES
====================== */

.visualization-page .viz-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  pointer-events: none; /* allow image swipe */
}

.visualization-page .viz-arrow {
  pointer-events: all;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #8EFF00;
  color: #000;
  border: none;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visualization-page .viz-arrow:hover {
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(142,255,0,0.6);
}

/* ======================
   TABLET
====================== */
@media (max-width: 1024px) {
  .visualization-page .viz-image {
    width: 96vw;
  }

  .visualization-page .viz-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {

  .visualization-page .viz-image {
    width: 94vw;
    border-radius: 14px;
  }

  .visualization-page .viz-arrows {
    padding: 0 12px;
  }

  .visualization-page .viz-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
/* ===============================
   ABOUT PAGE — PIXELBUG (SAFE)
================================ */

.about-page {
  background: #000;
  color: #fff;
}

/* ===== HERO ===== */
.about-hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.85)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--primary-accent);
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 820px;
  font-size: 1.05rem;
  color: #cfcfcf;
  line-height: 1.8;
}

/* ===== CONTENT ===== */
.about-content {
  max-width: 900px;
  margin: auto;
  padding: 100px 18px;
}

.about-section {
  margin-bottom: 90px;
  text-align: center;
}

.about-section h2 {
  color: var(--primary-accent);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.about-section p {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section li {
  color: #d0d0d0;
  margin: 12px 0;
  font-size: 0.95rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .about-hero {
    height: 75vh;
  }

  .about-content {
    padding: 70px 16px;
  }

  .about-section {
    margin-bottom: 60px;
  }
}
/* ===============================
   ABOUT PAGE – VISUAL + MOTION
================================ */

.about-split {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(142,255,0,0.25);
}

.about-text h2 {
  color: var(--primary-accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-text p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 70px 0;
}

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(142,255,0,0.25);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
}

.about-card h3 {
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.about-card p {
  color: #bdbdbd;
  font-size: 0.95rem;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(142,255,0,0.25);
}

/* ===============================
   SCROLL ANIMATIONS (NO JS)
================================ */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  animation: reveal 1s ease forwards;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    margin: 80px auto;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}
/* ======================================
   ABOUT PAGE — HERO (PROFESSIONAL)
====================================== */

.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Background image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(1.1);
  transform: scale(1.08);
  animation: aboutBgZoom 14s ease-in-out infinite alternate;
}

/* Dark cinematic overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.85)
  );
}

/* Subtle grid effect */
.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(142,255,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142,255,0,0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.15;
}

/* Content */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  animation: fadeUpHero 1.2s ease forwards;
}

.about-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 18px;
  text-shadow: 0 0 25px rgba(142,255,0,0.35);
}

.about-hero-subtitle {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Animations */
@keyframes fadeUpHero {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aboutBgZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* ======================================
   ABOUT CONTENT
====================================== */

.about-content {
  padding: 100px 16px;
  background: #000;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container h3 {
  color: var(--primary-accent);
  margin-bottom: 12px;
}

.about-container p {
  color: var(--subtle-neutral);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlight-block,
.about-objectives,
.about-work {
  margin-top: 50px;
}

.about-objectives ul {
  padding-left: 20px;
}

.about-objectives li {
  margin-bottom: 10px;
  color: #ccc;
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }
}
/* ======================================
   ABOUT PAGE — PRODUCTION LEVEL
====================================== */

.about-hero-pro {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Background */
.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.1);
  animation: slowZoom 18s linear infinite alternate;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.85));
}

/* Subtle glow */
.about-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(142,255,0,0.08);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: heroRise 1.4s ease forwards;
}

.about-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--primary-accent);
  text-shadow: 0 0 28px rgba(142,255,0,0.4);
  margin-bottom: 20px;
}

.about-subtitle {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Split section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 8vw;
  align-items: center;
  background: #000;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.about-text h2 {
  color: var(--primary-accent);
  margin-bottom: 14px;
}

.about-text p {
  color: var(--subtle-neutral);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 100px 8vw;
  background: #000;
}

.about-cards .card {
  padding: 34px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.about-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(142,255,0,0.2);
}

.about-cards h3 {
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.about-cards p {
  color: #cfcfcf;
}

/* Manifesto */
.about-manifesto {
  padding: 120px 10vw;
  text-align: center;
  background: radial-gradient(circle, rgba(142,255,0,0.05), transparent);
}

.about-manifesto p {
  font-size: 1.15rem;
  line-height: 2;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

/* Animations */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}

/* Mobile */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ABOUT PAGE – PIXELBUG
================================ */

.about-page {
  background: #000;
  padding: 120px 16px 100px;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 90px;
}

.about-title {
  color: #8EFF00;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
}

.about-underline {
  width: 70px;
  height: 3px;
  background: #8EFF00;
  margin: 14px auto;
}

.about-subtitle {
  color: #bdbdbd;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Philosophy */
.about-philosophy {
  max-width: 900px;
  margin: 0 auto 120px;
  text-align: center;
}

.about-philosophy h2 {
  color: #8EFF00;
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-philosophy p {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Image + Story */
.about-image-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 120px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.about-story h3 {
  color: #8EFF00;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.about-story p {
  color: #cfcfcf;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Objectives */
.about-objectives {
  max-width: 1100px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.objective-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.08);
  padding: 34px 26px;
  border-radius: 14px;
  transition: transform 0.35s ease;
}

.objective-card:hover {
  transform: translateY(-8px);
}

.objective-card h4 {
  color: #8EFF00;
  margin-bottom: 10px;
}

.objective-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Closing */
.about-closing {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #bdbdbd;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .about-image-story {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-objectives {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ABOUT PAGE – PIXELBUG
================================ */

.about-page {
  background: #000;
  color: #fff;
}

/* HEADER */
.about-header {
  text-align: center;
  padding: 120px 16px 70px;
}

.about-header h1 {
  color: var(--primary-accent);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
}

.header-line {
  width: 70px;
  height: 3px;
  background: var(--primary-accent);
  margin: 14px auto 0;
}

/* HERO STORY */
.about-hero {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about/about-hero.jpg") center / cover no-repeat;
  opacity: 0.25;
  filter: blur(2px);
}

.about-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-accent);
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.about-text .lead {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.about-text p {
  color: #bdbdbd;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(142,255,0,0.35);
  box-shadow: 0 0 40px rgba(142,255,0,0.15);
}

/* MEANING */
.about-meaning {
  padding: 90px 0;
  text-align: center;
}

.about-meaning h3 {
  color: var(--primary-accent);
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.about-meaning p {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #cfcfcf;
}

/* OBJECTIVES */
.about-objectives {
  padding: 90px 0;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.objective-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(142,255,0,0.2);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(142,255,0,0.15);
}

.objective-card h4 {
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.objective-card p {
  color: #cfcfcf;
}

/* OUR WORK */
.about-work {
  padding: 90px 0 120px;
  text-align: center;
}

.about-work h3 {
  color: var(--primary-accent);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-work p {
  max-width: 780px;
  margin: 0 auto 14px;
  color: #cfcfcf;
}

.about-work .highlight {
  color: var(--primary-accent);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-hero-content {
    grid-template-columns: 1fr;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ABOUT PAGE – CLEAN & FAST
================================ */

.about-page {
  background: #000;
  padding-bottom: 120px;
}

/* HEADER */
.about-header {
  text-align: center;
  padding: 120px 16px 60px;
}

.about-header h1 {
  color: #8EFF00;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
}

.about-line {
  width: 70px;
  height: 3px;
  background: #8EFF00;
  margin: 14px auto 0;
}

/* HERO */
.about-hero {
  text-align: center;
  padding: 80px 16px 100px;
}

.about-hero h2 {
  color: #8EFF00;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #cfcfcf;
  line-height: 1.8;
}

/* SPLIT */
.about-split {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  color: #8EFF00;
  margin-bottom: 14px;
}

.about-text p {
  color: #cfcfcf;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(142,255,0,0.3);
  box-shadow: 0 0 40px rgba(142,255,0,0.15);
}

/* MEANING */
.about-meaning {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 120px;
  padding: 0 16px;
}

.about-meaning h3 {
  color: #8EFF00;
  margin-bottom: 18px;
}

.about-meaning p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* OBJECTIVES */
.about-objectives {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.objective-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(142,255,0,0.2);
  border-radius: 14px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(142,255,0,0.18);
}

.objective-card h4 {
  color: #8EFF00;
  margin-bottom: 10px;
}

.objective-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* OUR WORK */
.about-work {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-work h3 {
  color: #8EFF00;
  margin-bottom: 18px;
}

.about-work p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-work .highlight {
  color: #8EFF00;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-objectives {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   ABOUT PAGE – SPACING FIX
   SAFE OVERRIDES ONLY
================================ */

.about-page {
  padding-top: 80px; /* was too big */
}

/* Page title */
.about-header {
  padding: 60px 16px 30px; /* reduced */
}

.about-header h1 {
  margin-bottom: 8px;
}

.header-line {
  margin: 8px auto 0;
}

/* Main hero text section */
.about-hero {
  padding: 50px 0; /* was ~90px */
}

.about-hero-content {
  gap: 30px; /* reduce space between text & image */
}

/* "We see light as emotion" */
.about-text h2 {
  margin-bottom: 12px;
}

.about-text .lead {
  margin-bottom: 10px;
}

/* Meaning section */
.about-meaning {
  padding: 50px 0;
}

.about-meaning h3 {
  margin-bottom: 14px;
}

.about-meaning p {
  margin-bottom: 10px;
}

/* Cards section */
.about-objectives {
  padding: 50px 0;
}

.objectives-grid {
  gap: 20px;
}

/* Our work section */
.about-work {
  padding: 50px 0 70px;
}

.about-work h3 {
  margin-bottom: 12px;
}

/* Paragraph spacing */
.about-page p {
  line-height: 1.65; /* tighter reading */
}

/* MOBILE TIGHTENING */
@media (max-width: 768px) {
  .about-header {
    padding: 40px 16px 20px;
  }

  .about-hero {
    padding: 35px 0;
  }

  .about-meaning,
  .about-objectives,
  .about-work {
    padding: 40px 0;
  }
}
/* =====================================
   ABOUT PAGE – GAP & HEIGHT FIX (FINAL)
   SAFE OVERRIDE – PLACE AT END
===================================== */

/* Kill unwanted full-screen heights */
.about-page,
.about-hero,
.about-hero-pro {
  min-height: auto !important;
  height: auto !important;
}

/* Reduce top gap under navbar */
.about-header {
  padding: 80px 16px 40px !important;
}

/* About title spacing */
.about-header h1,
.about-title {
  margin-bottom: 6px !important;
}

/* Reduce underline spacing */
.about-underline,
.page-header-underline {
  margin-bottom: 18px !important;
}

/* Reduce hero / intro gap */
.about-hero,
.about-hero-content {
  padding: 40px 0 !important;
}

/* Pull content UP (this is key) */
.about-philosophy,
.about-meaning,
.about-work {
  margin-top: 40px !important;
  padding-top: 0 !important;
}

/* Main intro text */
.about-philosophy p,
.about-meaning p {
  margin-bottom: 12px !important;
  line-height: 1.65 !important;
}

/* Tighten section gaps */
.about-section,
.about-objectives,
.about-image-story,
.about-split {
  margin-bottom: 70px !important;
  padding-bottom: 0 !important;
}

/* Reduce gap before "We see light as emotion" */
.about-philosophy h2,
.about-meaning h3 {
  margin-bottom: 14px !important;
}

/* Reduce huge empty black space between sections */
.about-content {
  padding: 60px 16px !important;
}

/* Cards spacing */
.about-objectives,
.objectives-grid,
.about-cards {
  gap: 20px !important;
}

/* Cards padding */
.objective-card,
.about-card {
  padding: 22px !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .about-header {
    padding: 60px 14px 30px !important;
  }

  .about-content {
    padding: 40px 14px !important;
  }

  .about-section,
  .about-objectives,
  .about-image-story {
    margin-bottom: 50px !important;
  }
}
/* ===============================
   FIX: ABOUT PAGE – REMOVE BIG GAP
   ONLY BETWEEN HEADING & INTRO
================================ */

/* Reduce space after "About Us" heading */
.about-header,
.page-heading-section {
  padding-bottom: 30px !important;
  margin-bottom: 0 !important;
}

/* Pull the intro text closer */
.about-philosophy,
.about-hero,
.about-intro,
.about-story,
.about-content > section:first-child {
  margin-top: 0 !important;
  padding-top: 40px !important;
}

/* If intro text is centered block */
.about-philosophy h2,
.about-hero h2 {
  margin-top: 0 !important;
}

/* Mobile fine-tune */
@media (max-width: 768px) {
  .about-header,
  .page-heading-section {
    padding-bottom: 20px !important;
  }

  .about-philosophy,
  .about-hero,
  .about-intro {
    padding-top: 24px !important;
  }
}
/* ======================================
   ABOUT PAGE – FIX GAP (What does it mean)
   SAFE OVERRIDE
====================================== */

/* Reduce top & bottom padding of the section */
.about-meaning {
  padding: 50px 0 60px !important; /* was too large */
}

/* Tighten heading spacing */
.about-meaning h3,
.about-meaning h2 {
  margin-bottom: 14px !important;
}

/* Tighten paragraph spacing */
.about-meaning p {
  margin-bottom: 10px !important;
  line-height: 1.6;
}

/* Reduce space before cards */
.about-objectives,
.objectives-grid {
  margin-top: 35px !important;
}

/* Cards spacing fix */
.objective-card {
  padding: 24px 22px !important;
}

/* Reduce gap between cards and next section */
.about-objectives {
  margin-bottom: 60px !important;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .about-meaning {
    padding: 40px 0 45px !important;
  }

  .objectives-grid {
    gap: 18px !important;
  }
}
/* ===============================
   WHAT DOES IT MEAN – GAP FIX
   =============================== */

.about-meaning {
  padding-top: 60px;   /* was too large */
  padding-bottom: 60px;
}

.about-meaning h3 {
  margin-bottom: 14px;
}

.about-meaning p {
  margin-bottom: 10px;
}

/* Cards container spacing */
.objectives-grid {
  margin-top: 40px;   /* reduce big empty space */
  gap: 22px;
}

/* Card internal spacing */
.objective-card {
  padding: 24px 22px; /* tighter & cleaner */
}
.objective-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.objective-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}
/* ===============================
   ABOUT PAGE – GAP FIX ONLY
================================ */

.about-header {
  padding: 90px 16px 30px;
}

.about-hero-tight {
  text-align: center;
  padding: 20px 16px 40px;
}

.about-main-line {
  color: var(--primary-accent);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.about-main-desc {
  max-width: 760px;
  margin: 0 auto;
  color: #cfcfcf;
  line-height: 1.7;
}

.about-split-tight {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-meaning-tight {
  text-align: center;
  padding: 60px 16px 40px;
}

.about-cards-tight {
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-work-tight {
  text-align: center;
  padding: 60px 16px 80px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-split-tight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cards-tight {
    grid-template-columns: 1fr;
  }
}
/* ======================================
   FIX: "WHAT DOES IT MEAN?" HEADING
   COLOR + UNDERLINE ANIMATION
   ====================================== */

.about-meaning h3 {
  position: relative;
  display: inline-block;
  color: var(--primary-accent) !important; /* force lime */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Underline */
.about-meaning h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: underlineReveal 0.8s ease forwards;
}

/* Animation */
@keyframes underlineReveal {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60%;
    opacity: 1;
  }
}
/* ======================================
   WHAT DOES IT MEAN – FINAL THEME FIX
   Place at VERY END of CSS
====================================== */

.about-meaning-tight h3,
.about-meaning h3 {
  position: relative;
  display: inline-block;
  color: var(--primary-accent); /* PixelBug green */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* Underline */
.about-meaning-tight h3::after,
.about-meaning h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 60px;
  height: 3px;
  background: var(--primary-accent);
  transform: translateX(-50%);
  border-radius: 4px;

  /* Glow + pulse */
  box-shadow:
    0 0 8px rgba(142,255,0,0.45),
    0 0 18px rgba(142,255,0,0.25);

  animation: pulseUnderline 2.4s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulseUnderline {
  0% {
    opacity: 0.4;
    box-shadow:
      0 0 6px rgba(142,255,0,0.35),
      0 0 14px rgba(142,255,0,0.2);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 14px rgba(142,255,0,0.65),
      0 0 28px rgba(142,255,0,0.45);
  }
  100% {
    opacity: 0.4;
    box-shadow:
      0 0 6px rgba(142,255,0,0.35),
      0 0 14px rgba(142,255,0,0.2);
  }
}
/* ======================================
   PIXELBUG THEMED HEADING (OUR WORK FIX)
====================================== */

.themed-heading {
  position: relative;
  display: inline-block;
  color: var(--primary-accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-align: center;
}

/* Animated underline */
.themed-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  height: 2px;
  width: 60%;
  background: var(--primary-accent);
  transform: translateX(-50%);
  border-radius: 2px;

  /* Pulse animation */
  animation: underlinePulse 2.2s ease-in-out infinite;
}

/* Pulse keyframes */
@keyframes underlinePulse {
  0% {
    opacity: 0.4;
    box-shadow: 0 0 6px rgba(142,255,0,0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(142,255,0,0.6);
  }
  100% {
    opacity: 0.4;
    box-shadow: 0 0 6px rgba(142,255,0,0.2);
  }
}
/* ======================================
   SUBTLE THEMED HEADING (WHO WE ARE)
====================================== */

.subtle-heading {
  font-size: 1.4rem;
  letter-spacing: 0.8px;
}

/* Softer underline for hierarchy */
.subtle-heading::after {
  width: 45%;
  height: 2px;
  opacity: 0.6;
  animation: underlinePulseSoft 2.8s ease-in-out infinite;
}

/* Softer pulse */
@keyframes underlinePulseSoft {
  0% {
    opacity: 0.3;
    box-shadow: 0 0 4px rgba(142,255,0,0.15);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(142,255,0,0.35);
  }
  100% {
    opacity: 0.3;
    box-shadow: 0 0 4px rgba(142,255,0,0.15);
  }
}
/* =====================================
   FIX: ABOUT PAGE FOOTER GAP
   SAFE & ISOLATED
===================================== */

/* Remove excess space before footer */
.about-page {
  padding-bottom: 20px !important; /* was huge */
}

/* Kill extra bottom space from last section */
.about-work-tight {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

/* If cards section is last before work */
.about-cards-tight {
  margin-bottom: 30px !important;
}

/* Ensure no hidden min-height pushing footer */
.about-page,
.about-work-tight {
  min-height: auto !important;
}

/* Footer stays same size */
footer,
.footer {
  margin-top: 0 !important;
}

@media (max-width: 360px) {
  .about-header h1 {
    font-size: 1.8rem;
  }
  .about-page p {
    font-size: 0.9rem;
  }
}
/* =========================================
   PIXELBUG – GLOBAL COLOR THEME OVERRIDE
   (ONLY COLOR CHANGE – SAFE)
========================================= */

:root{
  --primary-accent: #fffc00;
}

/* ---------- TEXT ---------- */
* {
  caret-color: #fffc00;
}

a:hover,
.hero-title,
.hero-highlight,
.section-title,
.page-heading-title,
.about-title,
.about-header h1,
.about-hero h1,
.about-meaning h3,
.about-work h3,
.themed-heading,
.subtle-heading,
.artist-name {
  color: #fffc00 !important;
}

/* ---------- BUTTONS ---------- */
.btn-glow,
.cta-btn,
.filter-btn.active,
.view-gallery,
.contact-box {
  border-color: #fffc00 !important;
  background-color: rgba(255,252,0,0.12) !important;
  color: #fffc00 !important;
}

.btn-glow:hover,
.cta-btn:hover,
.contact-box:hover {
  background-color: #fffc00 !important;
  color: #000 !important;
  box-shadow: 0 0 25px rgba(255,252,0,0.55) !important;
}

/* ---------- BORDERS ---------- */
.card-feature,
.about-card,
.objective-card,
.artist-card,
.team-card,
.gallery-card,
.feature-card {
  border-color: rgba(255,252,0,0.35) !important;
}

/* ---------- ICONS ---------- */
i,
.footer-icon,
.team-social,
.feature-arrow,
.card-arrow {
  color: #fffc00 !important;
  border-color: rgba(255,252,0,0.45) !important;
}

/* ---------- UNDERLINES ---------- */
.section-underline,
.page-heading-underline,
.about-underline,
.header-line,
.themed-heading::after,
.subtle-heading::after {
  background: #fffc00 !important;
  box-shadow:
    0 0 10px rgba(255,252,0,0.55),
    0 0 20px rgba(255,252,0,0.35) !important;
}

/* ---------- GLOWS ---------- */
.card-feature:hover,
.about-card:hover,
.objective-card:hover,
.artist-card:hover,
.team-card:hover,
.feature-card:hover {
  box-shadow:
    0 0 18px rgba(255,252,0,0.35),
    0 20px 40px rgba(0,0,0,0.65) !important;
}

/* ---------- HERO ---------- */
.hero-section .hero-title,
.hero-section .hero-highlight {
  color: #fffc00 !important;
  text-shadow:
    0 0 14px rgba(255,252,0,0.35),
    0 0 28px rgba(255,252,0,0.2) !important;
}

.hero-section .hero-lead {
  color: rgba(255,252,0,0.85) !important;
}

/* ---------- ARROWS / NAV ---------- */
.scroll-indicator .arrow,
.viz-arrow {
  border-color: #fffc00 !important;
  color: #fffc00 !important;
  background: rgba(255,252,0,0.12) !important;
}

.scroll-indicator .arrow:hover,
.viz-arrow:hover {
  background: #fffc00 !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255,252,0,0.6) !important;
}

/* ---------- FOOTER ---------- */
.footer-icon:hover {
  background: #fffc00 !important;
  color: #000 !important;
}

/* ---------- SELECTION ---------- */
::selection {
  background: #fffc00;
  color: #000;
}

/* ======================================
   YELLOW THEME FIX — SAFE OVERRIDES ONLY
   Paste at END of CSS
====================================== */

/* ---------- NAVBAR TABS ---------- */
.navbar .nav-link.nav-box {
  border: 1px solid rgba(255, 252, 0, 0.35);
  color: #fffc00 !important;
  background: rgba(255, 252, 0, 0.06);
  box-shadow: none;
}

.navbar .nav-link.nav-box:hover {
  color: #000 !important;
  background: #fffc00;
  border-color: #fffc00;
  box-shadow: 0 0 14px rgba(255, 252, 0, 0.45);
  transform: translateY(-2px);
}

/* Active tab */
.navbar .nav-link.active {
  background: #fffc00;
  color: #000 !important;
  border-color: #fffc00;
}

/* ---------- CONTACT BUTTON ---------- */
.navbar .nav-link.contact-box {
  background: #fffc00;
  color: #000 !important;
  border: 1px solid #fffc00;
  box-shadow: 0 0 12px rgba(255, 252, 0, 0.35);
}

.navbar .nav-link.contact-box:hover {
  background: #000;
  color: #fffc00 !important;
  box-shadow: 0 0 18px rgba(255, 252, 0, 0.55);
}

/* ---------- ARROW & ICON HOVER (SOFT) ---------- */
.card-arrow,
.feature-arrow,
.scroll-indicator .arrow {
  border-color: #fffc00;
  color: #fffc00;
  background: rgba(255, 252, 0, 0.08);
  box-shadow: 0 0 10px rgba(255, 252, 0, 0.18);
  transition: all 0.3s ease;
}

.card-feature:hover .card-arrow,
.feature-card:hover .feature-arrow,
.scroll-indicator .arrow:hover {
  background: rgba(255, 252, 0, 0.15);
  box-shadow: 0 0 14px rgba(255, 252, 0, 0.35);
  transform: translateY(-2px);
}

/* Arrow icon motion (subtle, no bold scale) */
.card-arrow i,
.feature-arrow i {
  transition: transform 0.3s ease;
}

.card-feature:hover .card-arrow i,
.feature-card:hover .feature-arrow i {
  transform: translateX(4px);
}
/* ======================================
   ARTIST MODAL THEME OVERRIDE (SAFE)
   Paste at END of CSS
====================================== */

/* Artist name heading in modal */
.artist-modal-title,
.artist-modal h5,
.artist-modal h4 {
  color: #fffc00 !important;
  text-shadow:
    0 0 10px rgba(255,252,0,0.35),
    0 0 22px rgba(255,252,0,0.2);
}

/* Close (X) button */
.artist-modal .btn-close,
.artist-modal .close {
  border-color: #fffc00 !important;
}

.artist-modal .btn-close::before,
.artist-modal .btn-close::after {
  background: #fffc00 !important;
}

/* View Gallery button */
.view-gallery {
  color: #fffc00 !important;
  border-color: rgba(255,252,0,0.6) !important;
  background: rgba(255,252,0,0.08) !important;
  box-shadow: 0 0 10px rgba(255,252,0,0.25);
}

/* View Gallery hover */
@media (hover: hover) {
  .artist-card:hover .view-gallery {
    background: #fffc00 !important;
    color: #000 !important;
    box-shadow:
      0 0 18px rgba(255,252,0,0.7),
      0 18px 40px rgba(255,252,0,0.35);
  }
}

/* Mobile / tablet (always visible) */
@media (hover: none) {
  .view-gallery {
    background: #fffc00 !important;
    color: #000 !important;
  }
}
/* =========================================
   PIXELBUG FINAL YELLOW THEME PATCH
   SAFE OVERRIDE — PLACE AT VERY END
========================================= */

:root {
  --theme-yellow: #fffc00;
  --theme-black: #000000;
}

/* =========================
   NAVBAR TABS + CONTACT
========================= */

.navbar .nav-link,
.navbar .nav-link.nav-box {
  color: var(--theme-yellow) !important;
  border-color: rgba(255,252,0,0.45) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  background: var(--theme-yellow) !important;
  color: #000 !important;
  box-shadow: 0 0 18px rgba(255,252,0,0.6) !important;
}

.navbar .nav-link.contact-box {
  background: var(--theme-yellow) !important;
  color: #000 !important;
  border-color: var(--theme-yellow) !important;
}

.navbar .nav-link.contact-box:hover {
  background: #000 !important;
  color: var(--theme-yellow) !important;
  box-shadow: 0 0 22px rgba(255,252,0,0.7) !important;
}

/* =========================
   HERO TEXT (FORCE YELLOW)
========================= */

.hero-title,
.hero-highlight,
.hero-lead {
  color: var(--theme-yellow) !important;
}

/* =========================
   ARTIST NAME FIX
========================= */

.artist-overlay h4,
.artist-name,
.artist-modal-title {
  color: var(--theme-yellow) !important;
  text-shadow: 0 0 12px rgba(255,252,0,0.35) !important;
}

/* =========================
   VIEW GALLERY BUTTON FIX
========================= */

.view-gallery {
  background: var(--theme-yellow) !important;
  color: #000 !important;
  border-color: var(--theme-yellow) !important;
  box-shadow: 0 0 18px rgba(255,252,0,0.55) !important;
  left: 50%;
  transform: translateX(-50%);
}

.view-gallery:hover {
  background: #000 !important;
  color: var(--theme-yellow) !important;
  box-shadow: 0 0 26px rgba(255,252,0,0.85) !important;
}

/* =========================
   ARROW BUTTON FIX
========================= */

.card-arrow,
.scroll-indicator .arrow,
.viz-arrow {
  border-color: var(--theme-yellow) !important;
  background: rgba(255,252,0,0.15) !important;
  color: var(--theme-yellow) !important;
}

.card-arrow i,
.scroll-indicator .arrow i,
.viz-arrow i {
  color: var(--theme-yellow) !important;
}

/* Hover = yellow bg + black arrow */
.card-arrow:hover,
.scroll-indicator .arrow:hover,
.viz-arrow:hover {
  background: var(--theme-yellow) !important;
}

.card-arrow:hover i,
.scroll-indicator .arrow:hover i,
.viz-arrow:hover i {
  color: #000 !important;
}

/* =========================
   INFO ICONS + CARDS
========================= */

.info-card i,
.stat-num,
.section-title {
  color: var(--theme-yellow) !important;
}

/* =========================
   VISUALIZATION PAGE FIX
========================= */

.visualization-page h1,
.visualization-page h2,
.visualization-page h3,
.visualization-page .viz-title {
  color: var(--theme-yellow) !important;
}

.visualization-page .viz-image {
  border-color: var(--theme-yellow) !important;
  box-shadow: 0 0 40px rgba(255,252,0,0.45) !important;
}

/* =========================
   FOOTER FIX
========================= */

footer,
.footer-text {
  color: var(--theme-yellow) !important;
}

.footer-icon {
  border-color: var(--theme-yellow) !important;
  color: var(--theme-yellow) !important;
}

.footer-icon:hover {
  background: var(--theme-yellow) !important;
  color: #000 !important;
}

/* =========================
   CTA BUTTON
========================= */

.cta-btn,
.btn-glow {
  border-color: var(--theme-yellow) !important;
  color: var(--theme-yellow) !important;
}

.cta-btn:hover,
.btn-glow:hover {
  background: var(--theme-yellow) !important;
  color: #000 !important;
  box-shadow: 0 0 26px rgba(255,252,0,0.8) !important;
}

/* =========================
   FINAL SAFETY
========================= */

* {
  accent-color: var(--theme-yellow);
}

/* =================================================
   FIX: VIEW GALLERY BUTTON ONLY (NO TEXT CHANGE)
   ================================================= */

/* Button ko pure image ke center me lao */
.artist-card .view-gallery {
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;

  /* Shape fix */
  padding: 10px 10px !important;   /* equal left-right */
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Artist name ko forcefully untouched rakho */
.artist-card .artist-overlay h4 {
  position: static !important;
  transform: none !important;
  margin-bottom: 6px !important;
}
/* ================================
   FIX: VIEW GALLERY ICON VISIBILITY
   ================================ */

/* Icon ko force visible rakho */
.view-gallery i,
.view-gallery svg {
  color: #000 !important;          /* yellow bg pe black icon */
  font-size: 1rem !important;
  display: inline-block !important;
}

/* Hover pe bhi icon visible rahe */
.artist-card:hover .view-gallery i,
.artist-card:hover .view-gallery svg {
  color: #000 !important;
}
/* =========================================
   FINAL FOOTER ICON HOVER FIX (FORCED)
   Matches CONTACT tab exactly
========================================= */

/* Default state */
footer .footer-icon,
.footer .footer-icon {
  background: transparent !important;
  color: #fffc00 !important;
  border: 1px solid #fffc00 !important;
  box-shadow: none !important;
}

/* Hover state */
footer .footer-icon:hover,
.footer .footer-icon:hover {
  background: #000000 !important;   /* BLACK like Contact hover */
  color: #fffc00 !important;        /* Yellow icon */
  border-color: #fffc00 !important;

  box-shadow: 0 0 16px rgba(255,252,0,0.55) !important;
  transform: translateY(-2px);
}

/* Force icon visibility (FontAwesome / SVG) */
footer .footer-icon i,
footer .footer-icon svg {
  color: inherit !important;
}
/* ===============================
   FOOTER – CONTACT TAB MATCH FIX
   =============================== */

/* Footer container */
.footer,
footer {
  background: #000 !important;
}

/* Footer text (span / copyright) */
.footer-text,
footer span {
  color: #fffc00 !important; /* same yellow */
  transition: color 0.3s ease;
}

/* Instagram icon – default */
.footer-icon {
  background: transparent !important;
  color: #fffc00 !important;
  border: 1px solid #fffc00 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

/* Instagram icon hover (EXACT like Contact tab hover) */
.footer-icon:hover {
  background: #000 !important;
  color: #fffc00 !important;
  border-color: #fffc00 !important;
  box-shadow: 0 0 18px rgba(255,252,0,0.55) !important;
  transform: translateY(-2px);
}

/* Icon inside (FontAwesome / SVG) */
.footer-icon i,
.footer-icon svg {
  color: inherit !important;
}

/* Optional: text glow on hover (subtle, premium) */
.footer:hover .footer-text,
footer:hover span {
  text-shadow: 0 0 10px rgba(255,252,0,0.35);
}
/* =========================================
   TEAM CARD – INSTAGRAM ICON + SPAN COLOR FIX
   (Theme Consistency – Yellow)
========================================= */

/* Designation text (span under name) */
.team-body span {
  color: #fffc00 !important;
  opacity: 0.85;
}

/* Instagram icon default */
.team-social {
  background: transparent !important;
  color: #fffc00 !important;
  border: 1px solid #fffc00 !important;
  box-shadow: none !important;
}

/* Instagram icon hover – SAME as Contact button */
.team-social:hover {
  background: #000 !important;
  color: #fffc00 !important;
  border-color: #fffc00 !important;
  box-shadow: 0 0 16px rgba(255,252,0,0.55) !important;
  transform: translateY(-2px);
}

/* Force icon visibility */
.team-social i,
.team-social svg {
  color: inherit !important;
}

/* Optional: subtle hover glow on whole card */
.team-card:hover .team-body span {
  opacity: 1;
}
/* ===============================
   CONTACT PAGE – PIXELBUG THEME
================================ */

.contact-section {
  padding: 120px 0 100px;
  background: #000;
}

/* Heading */
.contact-title {
  color: #fffc00;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-subtitle {
  color: rgba(255,252,0,0.8);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* FORM */
.contact-form .form-control {
  background: transparent;
  border: 1px solid rgba(255,252,0,0.35);
  color: #fffc00;
  padding: 12px 14px;
  border-radius: 10px;
}

.contact-form .form-control::placeholder {
  color: rgba(255,252,0,0.55);
}

.contact-form .form-control:focus {
  border-color: #fffc00;
  box-shadow: 0 0 14px rgba(255,252,0,0.45);
  background: transparent;
  color: #fffc00;
}

/* BUTTON */
.btn-contact {
  background: #fffc00;
  color: #000;
  border-radius: 999px;
  padding: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #000;
  color: #fffc00;
  box-shadow: 0 0 22px rgba(255,252,0,0.7);
  transform: translateY(-2px);
}

/* INFO BOX */
.contact-info {
  padding-left: 30px;
}

.contact-info h5 {
  color: #fffc00;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-info p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-info a {
  color: #fffc00;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0 60px;
  }

  .contact-info {
    padding-left: 0;
  }
}
/* CONTACT ICON ROW */
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: #fffc00;
}

/* ICON */
.contact-line i {
  font-size: 1.1rem;
  color: #fffc00;
  margin-top: 4px;
}

/* TEXT */
.contact-line span,
.contact-line a {
  color: rgba(255,252,0,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

/* HOVER (subtle, premium) */
.contact-line a:hover {
  color: #fffc00;
  text-shadow: 0 0 10px rgba(255,252,0,0.5);
}
/* CONTACT PAGE FIX */

.contact-input {
  background: #000;
  border: 1px solid #fffc00;
  color: #fffc00;
}

.contact-input::placeholder {
  color: rgba(255,252,0,0.7);
}

.contact-input:focus {
  background: #000;
  color: #fffc00;
  box-shadow: 0 0 12px rgba(255,252,0,0.4);
  border-color: #fffc00;
}

.contact-btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 14px;
  box-shadow: 0 0 20px rgba(255,252,0,0.45);
}

/* Contact icons + text */
.contact-item {
  color: #fffc00;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fffc00;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,252,0,0.1);
  font-size: 1rem;
}
/* ======================================
   CONTACT PAGE – FULL RESPONSIVE FIX
   SAFE & ISOLATED
====================================== */

/* Section spacing */
.contact-section {
  padding: 80px 0;
}

/* Headings */
.contact-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
}

.contact-section p {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Inputs */
.contact-input {
  width: 100%;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 12px;
}

/* Button */
.contact-btn {
  padding: 14px;
  font-size: 1rem;
}

/* Contact details */
.contact-item {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================
   TABLET (≤ 991px)
========================= */
@media (max-width: 991px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-section h1 {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  /* Stack nicely */
  .contact-section .row {
    gap: 30px;
  }

  .contact-item {
    font-size: 0.9rem;
  }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

  .contact-section {
    padding: 50px 0;
  }

  /* Center everything */
  .contact-section h1,
  .contact-section p {
    text-align: center;
  }

  /* Inputs spacing */
  .contact-input {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  textarea.contact-input {
    min-height: 140px;
  }

  /* Button full width */
  .contact-btn {
    font-size: 0.95rem;
    padding: 14px;
  }

  /* Contact details center */
  .contact-item {
    justify-content: flex-start;
    font-size: 0.9rem;
  }

  .contact-item i {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* =========================
   EXTRA SMALL (≤ 360px)
========================= */
@media (max-width: 360px) {

  .contact-section h1 {
    font-size: 1.6rem;
  }

  .contact-section p {
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }
}
/* ======================================
   PIXELBUG HAMBURGER MENU (MOBILE ONLY)
   Inspired by your FIRST CSS
====================================== */

.pb-menuToggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1200;
  user-select: none;
}

/* Checkbox */
.pb-menuToggle input {
  position: absolute;
  width: 40px;
  height: 32px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* Hamburger bars */
.pb-menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 6px;
  background: #fffc00;
  border-radius: 3px;
  transition:
    transform 0.45s cubic-bezier(0.77,0.2,0.05,1),
    background 0.45s,
    opacity 0.4s;
}

/* Animate to X */
.pb-menuToggle input:checked ~ span:nth-child(2) {
  transform: rotate(45deg) translate(6px, 6px);
}

.pb-menuToggle input:checked ~ span:nth-child(3) {
  opacity: 0;
}

.pb-menuToggle input:checked ~ span:nth-child(4) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MENU PANEL */
.pb-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  padding: 120px 30px;
  background: #000;
  list-style: none;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0.2,0.05,1);
  box-shadow: -20px 0 40px rgba(0,0,0,0.8);
}

/* Slide in */
.pb-menuToggle input:checked ~ .pb-menu {
  transform: translateX(0);
}

/* Menu items */
.pb-menu li {
  margin-bottom: 22px;
}

.pb-menu a {
  color: #fffc00;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pb-menu a:hover {
  padding-left: 8px;
  text-shadow: 0 0 12px rgba(255,252,0,0.6);
}

/* Contact button style */
.pb-menu .pb-contact {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fffc00;
  color: #000 !important;
  font-weight: 600;
}

/* Desktop: disable */
@media (min-width: 992px) {
  .pb-menuToggle {
    display: none;
  }
}
/* ===============================
   PIXELBUG MOBILE MENU FIX
================================ */

.pb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

#pb-menu-toggle:checked ~ .pb-menu {
  transform: translateX(0);
}

#pb-menu-toggle:checked ~ .pb-overlay,
#pb-menu-toggle:checked + span + span + span + .pb-menu + .pb-overlay {
  opacity: 1;
  visibility: visible;
}

/* Close button */
.pb-close {
  font-size: 24px;
  color: #fffc00;
  margin-bottom: 24px;
  cursor: pointer;
}

/* Menu panel */
.pb-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 30px 22px;
  transition: right 0.35s ease;
  z-index: 999;
}

/* Show menu */
#pb-menu-toggle:checked ~ .pb-menu {
  right: 0;
}
/* ===============================
   SVG THEME TOGGLE
================================ */

.pb-theme-toggle {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 999;
}

/* hide native checkbox completely */
#themeSwitch {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* button */
.pb-theme-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,0,0.25);
  box-shadow: 0 0 18px rgba(255,252,0,0.3);
  transition: all 0.4s ease;
}

/* svg base */
.pb-theme-btn svg {
  position: absolute;
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.45s ease;
}

/* SUN */
.pb-theme-btn .sun {
  stroke: #fffc00;
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* MOON */
/* ===============================
   MOON VISIBILITY FIX (LIGHT MODE)
================================ */

/* default moon (hidden in dark mode) */
.pb-theme-btn .moon {
  stroke: #4b5cff;                 /* darker blue */
  fill: rgba(75, 92, 255, 0.15);   /* subtle fill */
  stroke-width: 2.2;
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}

/* LIGHT MODE → SHOW MOON */
body.light-mode .pb-theme-btn .moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter:
    drop-shadow(0 0 6px rgba(75, 92, 255, 0.5))
    drop-shadow(0 0 14px rgba(75, 92, 255, 0.35));
}

/* hide sun more strongly in light mode */
body.light-mode .pb-theme-btn .sun {
  opacity: 0;
  transform: scale(0.35) rotate(90deg);
}


/* LIGHT MODE → SHOW MOON */
body.light-mode .pb-theme-btn {
  background: rgba(240, 242, 255, 0.9);
  border-color: rgba(75, 92, 255, 0.4);
  box-shadow:
    0 0 18px rgba(75, 92, 255, 0.35),
    0 0 36px rgba(75, 92, 255, 0.2);
}


body.light-mode .pb-theme-btn .sun {
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
}

body.light-mode .pb-theme-btn .moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* hover effect */
.pb-theme-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .pb-theme-toggle {
    top: 72px;
    right: 16px;
  }

  .pb-theme-btn {
    width: 40px;
    height: 40px;
  }

  .pb-theme-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .pb-theme-toggle {
    top: 64px;
    right: 12px;
  }

  .pb-theme-btn {
    width: 36px;
    height: 36px;
  }
}
.pb-theme-btn {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.pb-theme-btn:hover {
  transform: scale(1.12) rotate(6deg);
  background: rgba(255, 255, 0, 0.06);
  box-shadow:
    0 0 20px rgba(255,252,0,0.6),
    0 0 40px rgba(255,252,0,0.35);
}
.pb-theme-btn:hover .sun {
  transform: scale(1.1) rotate(45deg);
  stroke-width: 2.2;
}
.pb-theme-btn:hover .sun line {
  animation: sunPulse 1.2s ease-in-out infinite alternate;
}

@keyframes sunPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.pb-theme-btn:hover .moon {
  transform: scale(1.15) rotate(-12deg);
}
body.light-mode .pb-theme-btn:hover .moon {
  transform: scale(1.15) rotate(-8deg);
  filter:
    drop-shadow(0 0 10px rgba(75, 92, 255, 0.8))
    drop-shadow(0 0 22px rgba(75, 92, 255, 0.5));
}

.pb-theme-btn:active {
  transform: scale(0.95);
}
@media (hover: none) {
  .pb-theme-btn:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
  }

  .pb-theme-btn:hover .sun,
  .pb-theme-btn:hover .moon {
    transform: none;
    animation: none;
  }
}
/* Magnetic prep */
.pb-theme-btn {
  will-change: transform;
  transition: transform 0.25s ease;
}

/* ===============================
   NAVBAR AUTO-HIDE (CLIENT FIX)
================================ */

.navbar {
  transition: transform 0.35s ease, background-color 0.3s ease;
  will-change: transform;
}

/* Hide navbar fully */
.navbar.nav-hidden {
  transform: translateY(-100%);
}

/* ===============================
   THEME TOGGLE – TOP-ONLY VISIBILITY
================================ */

/* Base position (under navbar) */
.pb-theme-toggle {
  position: fixed;
  top: 90px;
  right: 24px;

  z-index: 900; /* under navbar */

  /* Visible at top */
  transform: translateX(0);
  opacity: 1;

  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* Hidden state (slide out to RIGHT) */
.pb-theme-toggle.hide-toggle {
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .pb-theme-toggle {
    top: 72px;
    right: 16px;
  }
}
/* ===============================
   BACK TO TOP BUTTON (FIXED)
================================ */

#backToTop {
  position: fixed;
  bottom: 28px;
  right: 26px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  /* 🔧 FIX: outlined look initially */
  background: transparent;
  border: 2px solid #fffc00;
  color: #fffc00;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem;
  cursor: pointer;

  /* Subtle glow only */
  box-shadow: 0 0 0 rgba(255,252,0,0);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 
    opacity 0.3s ease,
    transform 0.35s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;

  z-index: 950;
}

/* Show button */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ✅ Hover = filled + glow */
/* Hover – controlled premium glow */
#backToTop:hover {
  background: #000000;
  color: #fffc00;

  /* 🔧 FIX: smaller, tighter glow */
  box-shadow:
    0 0 6px rgba(255, 252, 0, 0.6),
    0 0 12px rgba(255, 252, 0, 0.4);

  transform: translateY(-3px);
}


/* Mobile tweak */
@media (max-width: 768px) {
  #backToTop {
    bottom: 22px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}
/* =========================================
   FIX: NAVBAR HOVER TEXT – LIGHT MODE
   ========================================= */

/* Light mode nav tabs hover */
body.light-mode .navbar .nav-link.nav-box:hover {
  background: #fffc00 !important; /* yellow bg */
  color: #000000 !important;      /* BLACK TEXT */
  border-color: #fffc00 !important;
  box-shadow: 0 0 12px rgba(255,252,0,0.45);
}

/* Light mode active tab */
body.light-mode .navbar .nav-link.active {
  background: #fffc00 !important;
  color: #000000 !important;
}
