/* about.css */
.about-content-section { padding: var(--section-pad); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; align-items: start; }
.about-intro { font-size: 1rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 14px; font-weight: 500; }
.about-body { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-placeholder { color: rgba(8,38,87,0.4); font-style: italic; font-size: 0.88rem; background: rgba(8,38,87,0.04); padding: 12px 16px; border-radius: 14px; border: 1px dashed rgba(8,38,87,0.15); }
.about-links { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* POLAROIDS */
.about-visual { position: relative; height: 340px; }
.polaroid { position: absolute; background: white; padding: 12px 12px 32px; border-radius: 4px; box-shadow: 0 8px 0 var(--shadow-charcoal), 0 16px 36px rgba(35,60,102,0.16); transition: transform 0.3s; cursor: pointer; }
.polaroid:hover { z-index: 10; }
.polaroid-1 { top: 0; left: 0; transform: rotate(-4deg); width: 160px; }
.polaroid-1:hover { transform: rotate(-1deg) scale(1.05); }
.polaroid-2 { top: 40px; left: 120px; transform: rotate(3deg); width: 150px; }
.polaroid-2:hover { transform: rotate(0deg) scale(1.05); }
.polaroid-img { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, rgba(8,38,87,0.07), rgba(86,204,242,0.12)); border-radius: 2px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.polaroid-placeholder { text-align: center; color: var(--muted); font-size: 1.5rem; line-height: 1.6; }
.polaroid-placeholder span { font-size: 0.7rem; display: block; color: var(--muted); opacity: 0.6; }
.polaroid-caption { font-size: 0.75rem; text-align: center; margin-top: 8px; color: var(--muted); font-style: italic; }

/* floating stickers */
/* floating stickers */
/* floating stickers */
.about-floating-sticker { position: absolute; background: white; border-radius: 999px; padding: 6px 14px; font-size: 0.72rem; font-weight: 700; color: var(--btn-fill); box-shadow: 0 4px 0 var(--shadow-charcoal); border: 1px solid rgba(35,60,102,0.1); }
.s1 { bottom: 20px; left: 10px; animation: sFloat 5s ease-in-out infinite; }
.s2 { top: 160px; right: 10px; color: var(--accent); animation: sFloat 5s ease-in-out infinite 1s; }
.s3 { bottom: 80px; right: 20px; color: #0077aa; animation: sFloat 5s ease-in-out infinite 2s; }
.s4 { top: 240px; left: 30px; color: #007744; animation: sFloat 5s ease-in-out infinite 1.5s; }
@keyframes sFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* CURRENTLY WORKING ON — highlighted label */
.what-i-do {
  padding: var(--section-pad); text-align: center;
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  box-shadow: inset 0 2px 14px rgba(35,60,102,0.08);
  overflow: hidden;
}
.what-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--btn-fill), var(--btn-shadow)); color: white;
  padding: 7px 20px; border-radius: 999px; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px; box-shadow: none;
  animation: labelPulse 3s ease-in-out infinite;
}
.what-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; text-align: left; }

/* 3D what-cards */
.what-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  border: 1.5px solid rgba(8,38,87,0.07);
  box-shadow: 0 6px 0 var(--btn-light), 0 12px 24px rgba(86,204,242,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.what-card:hover { transform: translateY(-4px); box-shadow: 0 10px 0 var(--btn-light), 0 18px 32px rgba(86,204,242,0.15); }
.what-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.what-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.what-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.about-stats-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  box-shadow: inset 0 2px 12px rgba(35,60,102,0.08);
  overflow: hidden;
}
.about-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; max-width: 800px; margin: 0 auto; }
.about-stat-card {
  background: linear-gradient(135deg, var(--btn-fill), var(--btn-shadow));
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 4px; text-align: center;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-stat-card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(35,60,102,0.2); }
.about-stat-card.purple { background: linear-gradient(135deg, var(--btn-fill), var(--btn-shadow)); }
.stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: white; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 260px; }
}

/* ===== ABOUT TARGETED FIXES ===== */
/* GitHub LinkedIn Email buttons — full 3D */
/* GitHub LinkedIn Email buttons — glowy aesthetic shade */
.about-links .btn-3d {
  box-shadow: 0 6px 0 var(--btn-shadow), 0 14px 28px var(--btn-glow) !important;
  border-radius: 999px !important;
}
.about-links .btn-3d:hover {
  transform: translateY(4px) !important;
  box-shadow: 0 2px 0 var(--btn-shadow), 0 6px 14px var(--btn-glow) !important;
}

/* what-i-building cards — stronger 3D + hover */
.what-card {
  box-shadow: 0 7px 0 var(--btn-light), 0 14px 28px rgba(9,105,230,0.1) !important;
  border: 1.5px solid rgba(9,105,230,0.1) !important;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s !important;
}
.what-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 13px 0 var(--btn-light), 0 24px 44px rgba(9,105,230,0.16) !important;
}
.what-icon { transition: transform 0.2s !important; }
.what-card:hover .what-icon { transform: scale(1.2) rotate(-5deg) !important; }

/* ============================================
   POP-IN STICKERS — about page hero
   (add this whole block to the END of about.css,
   nothing above it needs to change)
   ============================================ */

.pop-sticker {
  position: absolute;
  width: clamp(40px, 6vw, 68px);
  height: clamp(40px, 6vw, 68px);
  pointer-events: none;
  z-index: 2;
  animation: popStickerCycle 8s ease-in-out infinite;
}
.pop-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(35,60,102,0.18));
}

@keyframes popStickerCycle {
  0%    { transform: translate(0,0) scale(0.3); opacity: 0; }
  8%    { transform: translate(0,0) scale(1);   opacity: 1; }
  20%   { transform: translate(var(--dx), var(--dy)) scale(0.75); opacity: 1; }
  35%   { transform: translate(var(--dx), calc(var(--dy) - 8px)) scale(0.75); opacity: 1; }
  50%   { transform: translate(var(--dx), var(--dy)) scale(0.75); opacity: 1; }
  65%   { transform: translate(var(--dx), calc(var(--dy) - 8px)) scale(0.75); opacity: 1; }
  78%   { transform: translate(var(--dx), var(--dy)) scale(0.75); opacity: 1; }
  96%   { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; }
  96.5% { transform: translate(0,0) scale(0.3); opacity: 0; }
  100%  { transform: translate(0,0) scale(0.3); opacity: 0; }
}

/* ===== DESKTOP / TABLET — start positions + travel distance ===== */
/* pulled the convergence UP so it hugs "hi, i'm ayanshi." instead of the pills row */
.ps-graduate  { left: 18.3vw; top: 5.6vw;  --dx: 13.3vw; --dy: -0.2vw; width: clamp(52px, 7.5vw, 84px); height: clamp(52px, 7.5vw, 84px); }
.ps-flower    { left: 39.9vw; top: 7.9vw;  --dx: 2.3vw;  --dy: -1.8vw; }
.ps-headphone { left: 62vw;   top: 5.6vw;  --dx: -11.3vw;--dy: 1vw;    }
.ps-wolaptop  { left: 84vw;   top: 5.6vw;  --dx: -24vw;  --dy: -0.6vw; }
.ps-heart     { left: 92.1vw; top: 21.3vw; --dx: -30vw;  --dy: -13.5vw;}
.ps-leaf      { left: 16.5vw; top: 27.6vw; --dx: 14.7vw; --dy: -17.8vw;}
.ps-laptop    { left: 41.2vw; top: 33.2vw; --dx: -2.9vw; --dy: -21.6vw;}
.ps-camera    { left: 60vw;   top: 32.6vw; --dx: -10.6vw;--dy: -21vw;  }
.ps-coffee    { left: 80.9vw; top: 33.2vw; --dx: -19vw;  --dy: -22.5vw;}

/* ===== MOBILE (phones) — same reference-image layout as desktop, scaled down ===== */
@media (max-width: 600px) {
  .pop-sticker {
    width: clamp(26px, 9vw, 42px);
    height: clamp(26px, 9vw, 42px);
  }
  .ps-graduate  { left: 13.9vw; top: 76px;  --dx: 3vw;    --dy: 32px; }
  .ps-flower    { left: 42.0vw; top: 86px;  --dx: -1.6vw; --dy: 15px; }
  .ps-headphone { left: 69.3vw; top: 70px;  --dx: -8.9vw; --dy: 30px; }
  .ps-wolaptop  { left: 86.8vw; top: 70px;  --dx: -15vw;   --dy: 29px; }
  .ps-heart     { left: 90vw;   top: 127px; --dx: -16vw;  --dy: -7px; }
  .ps-leaf      { left: 11.8vw; top: 150px; --dx: 6vw;    --dy: -8px; }
  .ps-laptop    { left: 39.2vw; top: 160px; --dx: -5.0vw;--dy: -18px;}
  .ps-camera    { left: 62.3vw; top: 155px; --dx: -7.6vw; --dy: -15px;}
  .ps-coffee    { left: 82.4vw; top: 168px; --dx: -10vw;  --dy: -25px;}
}