/* ═══════════════════════════════════════════════════
   NARENDRA DANANE — COLORFUL VIBRANT PORTFOLIO
   style.css
   ═══════════════════════════════════════════════════ */

:root {
  --white:   #ffffff;
  --off:     #f8f9ff;
  --light:   #f1f4ff;
  --txt:     #1a1d2e;
  --muted:   #64748b;
  --border:  #e5e9f5;

  /* Brand palette */
  --blue:    #3b82f6;
  --blue2:   #2563eb;
  --purple:  #8b5cf6;
  --purple2: #7c3aed;
  --pink:    #ec4899;
  --pink2:   #db2777;
  --orange:  #f97316;
  --orange2: #ea580c;
  --green:   #10b981;
  --green2:  #059669;
  --cyan:    #06b6d4;
  --cyan2:   #0891b2;
  --yellow:  #f59e0b;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-sub:  'Space Grotesk', sans-serif;
  --font-mono: 'Fira Code', monospace;
  --nav-h:     70px;
  --radius:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--white);
  color: var(--txt);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(139,92,246,.2); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; }

/* ═══ NAVBAR ════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 9000;
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  font-family: var(--font-sub);
  font-size: 1.3rem; font-weight: 700;
  color: var(--txt);
  display: flex; align-items: center; gap: .5rem;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  flex-shrink: 0;
}
.logo-accent { color: var(--purple); }

.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-size: .88rem; font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  padding: .3rem 0;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 2px; transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: .85rem; font-weight: 700;
  padding: .5rem 1.3rem; border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,92,246,.35); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 40%, #ecfeff 80%, #f0fdf4 100%);
  padding: 0 6vw;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  justify-content: center; position: relative;
  overflow: hidden;
}

/* animated blobs */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hs {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5;
  animation: hs-drift 15s ease-in-out infinite alternate;
}
.hs1 { width: 500px; height: 500px; background: rgba(139,92,246,.18); top: -150px; right: 5%; animation-duration: 18s; }
.hs2 { width: 350px; height: 350px; background: rgba(59,130,246,.15); bottom: 5%; left: -100px; animation-duration: 22s; }
.hs3 { width: 280px; height: 280px; background: rgba(236,72,153,.12); top: 40%; right: 30%; animation-duration: 14s; animation-delay: -4s; }
.hs4 { width: 200px; height: 200px; background: rgba(249,115,22,.1); top: 20%; left: 20%; animation-duration: 20s; animation-delay: -8s; }
.hs5 { width: 160px; height: 160px; background: rgba(16,185,129,.12); bottom: 20%; right: 10%; animation-duration: 12s; animation-delay: -6s; }
@keyframes hs-drift {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.08); }
  100% { transform: translate(-20px,30px) scale(.95); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.25);
  padding: .4rem 1.1rem; border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: var(--purple);
  margin-bottom: 1.5rem; width: fit-content;
}
.hb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  animation: hbpulse 2s infinite;
}
@keyframes hbpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,.7); }
  50%      { box-shadow: 0 0 0 7px rgba(139,92,246,0); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.03em; margin-bottom: 1rem;
  color: var(--txt);
}
.hero-name-grad {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 40%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}

.hero-typed-wrap {
  font-family: var(--font-mono); font-size: clamp(.85rem,1.5vw,1.05rem);
  color: var(--muted); margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .3rem;
}
.typed-prefix { color: var(--purple); font-weight: 500; }
.hero-typed-text { color: var(--orange); }
.typed-cur { color: var(--blue); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-para {
  font-size: 1rem; color: var(--muted); max-width: 500px;
  margin-bottom: 2rem; line-height: 1.85;
}
.hero-para strong { color: var(--txt); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-grad {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-size: .95rem; font-weight: 700;
  padding: .8rem 2rem; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(139,92,246,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(139,92,246,.45); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--purple);
  border: 2px solid var(--purple); font-size: .95rem; font-weight: 700;
  padding: .8rem 2rem; border-radius: 100px;
  transition: background .2s, color .2s, transform .2s;
}
.btn-white:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--white); border-radius: 16px;
  padding: 1.2rem 2rem; box-shadow: var(--shadow-md);
  width: fit-content;
}
.hs-stat { text-align: center; padding: 0 1.5rem; }
.hs-num {
  font-family: var(--font-sub); font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-suf { font-family: var(--font-sub); font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.hs-stat small { display: block; font-size: .73rem; color: var(--muted); font-weight: 500; margin-top: .1rem; text-transform: uppercase; letter-spacing: .06em; }
.hs-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* hero right */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.hv-photo-wrap {
  position: relative;
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hv-blob {
  position: absolute; inset: -20px; border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(59,130,246,.15), rgba(236,72,153,.12));
  animation: blob-morph 8s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%; }
  33%      { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
  66%      { border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%; }
}
.hv-ring {
  position: absolute; border-radius: 50%;
  animation: ring-spin 12s linear infinite;
}
.hv-r1 { inset: -30px; border: 2px dashed rgba(139,92,246,.2); }
.hv-r2 { inset: -55px; border: 1px solid rgba(59,130,246,.12); animation-direction: reverse; animation-duration: 20s; }
@keyframes ring-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hv-photo {
  width: 92%; height: 92%; border-radius: 50%;
  object-fit: cover; position: relative; z-index: 2;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(139,92,246,.25), 0 0 0 8px rgba(139,92,246,.08);
}

/* floating tech cards */
.hv-floats { position: absolute; inset: -30px; pointer-events: none; z-index: 3; }
.hf {
  position: absolute;
  display: flex; align-items: center; gap: .4rem;
  background: var(--white); border-radius: 12px;
  padding: .45rem .9rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  font-size: .75rem; font-weight: 600; color: var(--txt);
  animation: hf-float 3s ease-in-out infinite;
  white-space: nowrap;
}
.hf i { font-size: 1.3rem; }
.hf1 { top: 5%;  left: -5%;  animation-delay: 0s; }
.hf2 { top: 20%; right: 2%; animation-delay: .5s; }
.hf3 { top: 48%; left: -10%;animation-delay: 1s; }
.hf4 { bottom: 50%; right: -4%; animation-delay: 1.5s; }
.hf5 { bottom: 8%;  left: -5%; animation-delay: 2s; }
.hf6 { top: 68%;  right: 2%; animation-delay: 2.5s; }
@keyframes hf-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* socials */
.hero-socials {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-bottom: 1rem; padding-bottom: 2rem;
}
.soc-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  background: var(--white); color: var(--txt);
  box-shadow: var(--shadow-sm);
}
.soc-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.soc-pill i { font-size: 1rem; }
.soc-li  { color: #0a66c2; }
.soc-li:hover  { box-shadow: 0 6px 20px rgba(10,102,194,.2); }
.soc-gm  { color: #ea4335; }
.soc-gm:hover  { box-shadow: 0 6px 20px rgba(234,67,53,.2); }
.soc-wa  { color: #25d366; }
.soc-wa:hover  { box-shadow: 0 6px 20px rgba(37,211,102,.2); }

.scroll-down {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--muted);
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce-down {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══ COMMON SECTION STYLES ═════════════════════ */
section { padding: 6rem 7vw; }
.sec-h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 1rem; line-height: 1.1;
}
.sec-h2.centered { text-align: center; }
.sec-sub { text-align: center; color: var(--muted); margin-bottom: 3rem; }

.sec-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: .7rem;
  padding: .3rem .9rem; border-radius: 100px;
}
.sec-label.purple { background: rgba(139,92,246,.1); color: var(--purple); }
.sec-label.blue   { background: rgba(59,130,246,.1);  color: var(--blue); }
.sec-label.green  { background: rgba(16,185,129,.1);  color: var(--green); }
.sec-label.orange { background: rgba(249,115,22,.1);  color: var(--orange); }
.sec-label.pink   { background: rgba(236,72,153,.1);  color: var(--pink); }
.sec-label.cyan   { background: rgba(6,182,212,.1);   color: var(--cyan); }

.sec-label-center { display: flex; justify-content: center; margin-bottom: .7rem; }
.sec-label-center.purple { color: var(--purple); }
.sec-label-center.blue   { color: var(--blue); }
.sec-label-center.green  { color: var(--green); }
.sec-label-center.orange { color: var(--orange); }
.sec-label-center.pink   { color: var(--pink); }
.sec-label-center.cyan   { color: var(--cyan); }
.sec-label-center span {
  font-size: .92rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem 1.3rem; border-radius: 100px;
  background: currentColor; color: #fff;
  opacity: 1;
}
/* override span color */
.sec-label-center.purple span { background: rgba(139,92,246,.18); color: var(--purple); }
.sec-label-center.blue   span { background: rgba(59,130,246,.18);  color: var(--blue); }
.sec-label-center.green  span { background: rgba(16,185,129,.18);  color: var(--green); }
.sec-label-center.orange span { background: rgba(249,115,22,.18);  color: var(--orange); }
.sec-label-center.pink   span { background: rgba(236,72,153,.18);  color: var(--pink); }
.sec-label-center.cyan   span { background: rgba(6,182,212,.18);   color: var(--cyan); }
.sec-label-center.white  span { background: rgba(255,255,255,.2);  color: #fff; }

.underline-grad {
  position: relative; display: inline-block;
}
.underline-grad::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  border-radius: 2px;
}
.underline-white::after {
  background: rgba(255,255,255,.6);
}

/* TAGS */
.tag { display: inline-block; padding: .3rem .8rem; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.tag.blue   { background: rgba(59,130,246,.1);  color: var(--blue); }
.tag.purple { background: rgba(139,92,246,.1);  color: var(--purple); }
.tag.pink   { background: rgba(236,72,153,.1);  color: var(--pink); }
.tag.orange { background: rgba(249,115,22,.1);  color: var(--orange); }
.tag.green  { background: rgba(16,185,129,.1);  color: var(--green); }
.tag.cyan   { background: rgba(6,182,212,.1);   color: var(--cyan); }

/* ═══ ABOUT ══════════════════════════════════════ */
.sec-about { background: var(--off); }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform .4s;
}
.about-img-wrap:hover .about-img { transform: scale(1.02); }

.about-img-badge {
  position: absolute; top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff; border-radius: 100px;
  padding: .55rem 1.1rem;
  font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.about-stat-card {
  position: absolute;
  background: var(--white); border-radius: 16px;
  padding: .8rem 1.2rem; box-shadow: var(--shadow-md);
  text-align: center;
}
.asc1 { bottom: 24px; left: -20px; }
.asc2 { bottom: 24px; right: -20px; }
.asc-num {
  display: block;
  font-family: var(--font-sub); font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-card small { font-size: .7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

.about-text-side .sec-h2 { margin-bottom: 1.5rem; }
.about-text-side p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.9; }
.about-text-side p strong { color: var(--txt); }
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }

/* ═══ SKILLS ═════════════════════════════════════ */
.sec-skills { background: var(--white); }

.skills-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.stab {
  padding: .55rem 1.4rem; border-radius: 100px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-head); font-size: .85rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: all .2s;
}
.stab:hover { border-color: var(--purple); color: var(--purple); }
.stab.active {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 20px rgba(139,92,246,.3);
}

.skills-panels {
  width: 100%;
 }
.skills-panel { display: none; }
.skills-panel.active { display: block; }

.skill-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.skcard {
  background: var(--off); border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  border: 2px solid transparent;
  transition: all .25s;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, border-color .25s, box-shadow .25s;
}
.skcard.visible { opacity: 1; transform: translateY(0); }
.skcard:hover { border-color: var(--purple); box-shadow: var(--shadow-md); background: var(--white); }

.skc-icon { font-size: 2.2rem; flex-shrink: 0; width: 52px; text-align: center; }
.skc-info { flex: 1; }
.skc-info span { display: block; font-size: .9rem; font-weight: 700; color: var(--txt); margin-bottom: .5rem; }
.skc-bar { width: 100%; height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; margin-bottom: .3rem; }
.skc-fill { height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--purple), var(--blue)); transition: width 1.2s cubic-bezier(.22,1,.36,1); }
.skc-info small { font-size: .7rem; color: var(--muted); font-family: var(--font-mono); }

/* icon accent colors per card */
.sk-docker    .skc-fill { background: linear-gradient(90deg,#2496ed,#1a7fc1); }
.sk-k8s       .skc-fill { background: linear-gradient(90deg,#326ce5,#2456b5); }
.sk-terra     .skc-fill { background: linear-gradient(90deg,#7b42bc,#5c2e8f); }
.sk-jenkins   .skc-fill { background: linear-gradient(90deg,#d33833,#a82b27); }
.sk-git       .skc-fill { background: linear-gradient(90deg,#f05032,#c03a22); }
.sk-grafana   .skc-fill { background: linear-gradient(90deg,#f46800,#c35300); }
.sk-azure     .skc-fill { background: linear-gradient(90deg,#0078d4,#005ba1); }
.sk-cicd      .skc-fill { background: linear-gradient(90deg,var(--purple),var(--blue)); }
.sk-sail .skc-fill,.sk-jml .skc-fill  { background: linear-gradient(90deg,var(--purple),var(--pink)); }
.sk-cyber     .skc-fill { background: linear-gradient(90deg,var(--pink),var(--orange)); }
.sk-ad        .skc-fill { background: linear-gradient(90deg,#00adef,#0078d4); }
.sk-dyna      .skc-fill { background: linear-gradient(90deg,#1496ff,#0070cc); }
.sk-hpom      .skc-fill { background: linear-gradient(90deg,var(--orange),var(--yellow)); }
.sk-snow      .skc-fill { background: linear-gradient(90deg,var(--green),var(--cyan)); }
.sk-nnm       .skc-fill { background: linear-gradient(90deg,var(--cyan),var(--blue)); }
.sk-ps        .skc-fill { background: linear-gradient(90deg,#2671be,#1a4f8a); }
.sk-linux     .skc-fill { background: linear-gradient(90deg,#f7b731,#e67e22); }
.sk-sql       .skc-fill { background: linear-gradient(90deg,#cc2927,#9b1c1a); }

/* icon overrides for non-devicon */
.sk-sail .skc-icon i, .sk-cyber .skc-icon i, .sk-jml .skc-icon i { color: var(--purple); }
.sk-ad .skc-icon i    { color: #0078d4; }
.sk-dyna .skc-icon i  { color: #1496ff; }
.sk-hpom .skc-icon i  { color: var(--orange); }
.sk-snow .skc-icon i  { color: var(--green); }
.sk-nnm .skc-icon i   { color: var(--cyan); }
.sk-cicd .skc-icon i  { color: var(--purple); }

/* ═══ EXPERIENCE ═════════════════════════════════ */
.sec-exp { background: linear-gradient(160deg, #faf5ff 0%, #eff6ff 100%); }

.exp-timeline {
  position: relative; margin-top: 3rem;
  display: flex; flex-direction: column; gap: 0;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.exp-track {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--blue), var(--pink));
  transform: translateX(-50%); border-radius: 2px;
  opacity: .35;
}

.exp-item {
  position: relative; width: 46%; margin-bottom: 3rem;
  display: flex; align-items: flex-start; gap: 0;
}
.ei-left  { align-self: flex-start; margin-right: auto; justify-content: flex-end; }
.ei-right { align-self: flex-end; margin-left: auto; flex-direction: row-reverse; }

.exp-dot {
  width: 18px; height: 18px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1.5rem; position: absolute;
  z-index: 2; border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.ei-left  .exp-dot { right: -34px; }
.ei-right .exp-dot { left: -34px; }
.dot-purple { background: var(--purple); box-shadow: 0 0 0 5px rgba(139,92,246,.2); }
.dot-blue   { background: var(--blue);   box-shadow: 0 0 0 5px rgba(59,130,246,.2); }
.dot-pink   { background: var(--pink);   box-shadow: 0 0 0 5px rgba(236,72,153,.2); }

.exp-bubble {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s;
  width: 100%;
}
.exp-bubble.visible { opacity: 1; transform: translateY(0); }
.exp-bubble:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow-lg); }

.bubble-purple { border-top: 4px solid var(--purple); }
.bubble-blue   { border-top: 4px solid var(--blue); }
.bubble-pink   { border-top: 4px solid var(--pink); }

.exp-date { font-family: var(--font-mono); font-size: .72rem; font-weight: 500; color: var(--muted); margin-bottom: .3rem; }
.exp-company { font-size: .82rem; font-weight: 600; color: var(--purple); margin-bottom: .6rem; display: flex; align-items: center; gap: .4rem; }
.exp-bubble h3 { font-size: 1.1rem; font-weight: 800; color: var(--txt); margin-bottom: .8rem; }
.exp-bubble ul li { font-size: .87rem; color: var(--muted); margin-bottom: .35rem; padding-left: 1rem; position: relative; line-height: 1.6; }
.exp-bubble ul li::before { content: '›'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }
.exp-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.exp-tags span {
  padding: .25rem .7rem; border-radius: 100px;
  font-size: .7rem; font-weight: 600;
}
.bubble-purple .exp-tags span { background: rgba(139,92,246,.1); color: var(--purple); }
.bubble-blue   .exp-tags span { background: rgba(59,130,246,.1);  color: var(--blue); }
.bubble-pink   .exp-tags span { background: rgba(236,72,153,.1);  color: var(--pink); }

/* zorov-sanji */
.zorov-sanji{
  position:absolute;
  right:-90px;
  bottom: -100px;
  z-index:5;
}

.zorov-sanji img{
  width:820px;
  pointer-events:none;
  opacity:.75;   /* makes it lighter */
}
/* NAMI CHARACTER */
.nami-character{
  position:absolute;
  left:430px;
  bottom:580px;
  z-index:4;
}

.nami-character img{
  width:300px;
  opacity:.75; 
}

/* LUFFY CHARACTER */
.luffy-pointer{
  position:absolute;
  right:-90px;
  bottom: 1270px;
  z-index:5;
}

.luffy-pointer img{
  width:820px;
  height:1300px;
  pointer-events:none;
  opacity:.75;   /* makes it lighter */
}

/* ═══ PROJECTS ═══════════════════════════════════ */
.sec-projects { background: var(--white); }

.proj-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.proj-card {
  border-radius: 24px; padding: 2rem 2.2rem;
  transition: transform .3s, box-shadow .3s;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s, transform .5s;
  position: relative; overflow: hidden;
}
.proj-card.visible { opacity: 1; transform: translateY(0); }
.proj-card:hover { transform: translateY(-6px) !important; }

.pc-blue   { background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%); border: 2px solid rgba(59,130,246,.2); box-shadow: 0 8px 32px rgba(59,130,246,.1); }
.pc-orange { background: linear-gradient(135deg, #fff7f0 0%, #fff0e5 100%); border: 2px solid rgba(249,115,22,.2); box-shadow: 0 8px 32px rgba(249,115,22,.1); }

.pc-blue:hover   { box-shadow: 0 20px 50px rgba(59,130,246,.2); }
.pc-orange:hover { box-shadow: 0 20px 50px rgba(249,115,22,.2); }

.pc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem; }
.pc-icon { font-size: 2.8rem; }
.pc-number {
  font-family: var(--font-sub); font-size: 3.5rem; font-weight: 800;
  opacity: .08; line-height: 1; color: var(--txt);
}
.proj-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--txt); margin-bottom: .7rem; }
.proj-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.75; }
.proj-card ul { margin-bottom: 1.5rem; }
.proj-card ul li { font-size: .85rem; color: var(--muted); margin-bottom: .4rem; display: flex; align-items: flex-start; gap: .5rem; line-height: 1.6; }
.pc-blue .proj-card ul li .fa-circle-check, .pc-blue .fa-circle-check  { color: var(--blue); }
.pc-orange .fa-circle-check { color: var(--orange); }
.fa-circle-check { font-size: .8rem; margin-top: .25rem; flex-shrink: 0; color: var(--blue); }
.pc-orange .fa-circle-check { color: var(--orange); }
.pc-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pc-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.pc-blue .pc-chips span { background: rgba(59,130,246,.1); color: var(--blue); border-radius: 100px; padding: .25rem .7rem; font-size: .7rem; font-weight: 600; }
.pc-orange .pc-chips span { background: rgba(249,115,22,.1); color: var(--orange); border-radius: 100px; padding: .25rem .7rem; font-size: .7rem; font-weight: 600; }
.pc-gh-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.1rem; border-radius: 100px;
  font-size: .8rem; font-weight: 700;
  transition: transform .2s;
}
.pc-blue .pc-gh-btn   { background: var(--blue);   color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,.3); }
.pc-orange .pc-gh-btn { background: var(--orange);  color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,.3); }
.pc-gh-btn:hover { transform: translateY(-2px); }


/* HOME LAB */
.homelab-card {
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
  border: 2px solid rgba(139,92,246,.15);
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 8px 40px rgba(139,92,246,.08);

  position: relative;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hl-bg-video{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
opacity:.12;
pointer-events:none;
}

/* KEEP CONTENT ABOVE VIDEO */
.hl-left,
.hl-right{
  position:relative;
  z-index:2;
}
.wip-badge {
  display: inline-block;
  background: rgba(249,115,22,.12); border: 1.5px solid rgba(249,115,22,.3);
  color: var(--orange); font-size: .7rem; font-weight: 700;
  padding: .2rem .7rem; border-radius: 100px; vertical-align: middle; margin-left: .6rem;
}
.hl-title { font-size: 1.6rem; font-weight: 800; color: var(--txt); margin-bottom: .8rem; }
.hl-left p { color: #000; margin-bottom: 1.5rem; font-size: .95rem; line-height: 1.85; }
.hl-features { display: flex; flex-direction: column; gap: .7rem; }
.hlf { display: flex; align-items: center; gap: .7rem; font-size: .88rem; font-weight: 600; color: var(--txt); }
.hlf i { font-size: 1.3rem; width: 24px; text-align: center; }

.hl-pipeline { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hlp { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hlp-ico {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.hlp-ico:hover { transform: scale(1.1); }
.hlp-git     { background: linear-gradient(135deg, #fff0ee, #ffe4e0); }
.hlp-jenkins { background: linear-gradient(135deg, #fff0f0, #ffe6e5); }
.hlp-terra   { background: linear-gradient(135deg, #f5f0ff, #ede6ff); }
.hlp-k8s     { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.hlp-grafana { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.hlp span { font-size: .75rem; font-weight: 700; color: var(--muted); }
.hlp-line {
  width: 2px; height: 20px;
  background: linear-gradient(180deg, var(--purple), var(--blue));
  border-radius: 2px; opacity: .3;
}

/* Fix 03 position in Home Lab card */
.homelab-header{
  position: relative;
}

.hl-number{
  position: absolute;
  top: -80px;
  right: -800px;
}

/* ═══ CERTIFICATIONS ═════════════════════════════ */
.sec-certs { background: linear-gradient(160deg, #f0fdf4 0%, #eff6ff 100%); }

.cert-mosaic {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem; margin-bottom: 2.5rem;
}
.cert-card {
  background: var(--white); border-radius: 20px; padding: 1.5rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border);
  transition: all .25s;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s, transform .5s, border-color .25s, box-shadow .25s;
}
.cert-card.visible { opacity: 1; transform: translateY(0); }
.cert-card:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow-md); }
.cc-featured { grid-column: span 1; }

/* color accents */
.cc-azure  { border-top: 4px solid #0078d4; }
.cc-azure  .cc-icon { color: #0078d4; }
.cc-ibm    { border-top: 4px solid #054ada; }
.cc-ibm    .cc-icon { color: #054ada; }
.cc-li     { border-top: 4px solid #0a66c2; }
.cc-li     .cc-icon { color: #0a66c2; }
.cc-linux  { border-top: 4px solid #f7b731; }
.cc-linux  .cc-icon { color: #f7b731; }
.cc-kali   { border-top: 4px solid var(--pink); }
.cc-kali   .cc-icon { color: var(--pink); }
.cc-udemy  { border-top: 4px solid #a435f0; }
.cc-udemy  .cc-icon { color: #a435f0; }
.cc-linux2 { border-top: 4px solid var(--orange); }
.cc-linux2 .cc-icon { color: var(--orange); }
.cc-google { border-top: 4px solid #ea4335; }
.cc-google .cc-icon { color: #ea4335; }
.cc-crisis { border-top: 4px solid var(--green); }
.cc-crisis .cc-icon { color: var(--green); }

.cc-icon { font-size: 2rem; margin-bottom: .2rem; }
.cc-info strong { font-size: .95rem; font-weight: 700; color: var(--txt); display: block; margin-bottom: .2rem; }
.cc-info span { font-size: .78rem; color: var(--muted); display: block; }
.cc-info code { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); }
.cc-link-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; color: var(--blue);
  margin-top: .3rem; transition: gap .2s;
}
.cc-link-btn:hover { gap: .7rem; }
.cc-link-btn i { font-size: .6rem; }

.infosys-section { margin-top: 1rem; }
.infosys-header {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  margin-bottom: 1rem;
  background: rgba(99,102,241,.08); border-radius: 100px; padding: .45rem 1.1rem;
}
.infosys-header i { color: var(--indigo, #6366f1); }
.infosys-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.infosys-pills span {
  padding: .35rem .9rem; border-radius: 100px;
  background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.2);
  color: #6366f1; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
  transition: background .2s;
}
.infosys-pills span:hover { background: rgba(99,102,241,.15); }
.infosys-pills .fa-check { font-size: .65rem; color: #6366f1; }

/* ═══ TESTIMONIALS ══════════════════════════════ */
.sec-testi { background: var(--white); }
.testi-carousel { max-width: 780px; margin: 0 auto; overflow: hidden; }
.tc-track { display: flex; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.tc-slide {
  min-width: 100%;
  background: var(--off); border-radius: 24px; padding: 2.5rem 3rem;
  border: 2px solid var(--border); position: relative;
}
.tc-quote { font-size: 3rem; color: var(--purple); opacity: .25; margin-bottom: .5rem; line-height: 1; }
.tc-slide p { font-size: 1rem; color: var(--muted); line-height: 1.9; font-style: italic; margin-bottom: 2rem; }
.tc-person { display: flex; align-items: center; gap: 1rem; }
.tc-person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid var(--purple); flex-shrink: 0; }
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: 1rem; font-weight: 800; color: var(--txt); }
.tc-info em { display: block; font-size: .82rem; color: var(--purple); font-style: normal; font-weight: 600; }
.tc-info small { font-size: .78rem; color: var(--muted); }
.tc-li { font-size: 1.4rem; color: var(--muted); transition: color .2s; flex-shrink: 0; }
.tc-li:hover { color: #0a66c2; }
.tc-nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.5rem; }
.tc-nav button { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); font-size: .9rem; color: var(--muted); cursor: pointer; box-shadow: var(--shadow-sm); transition: all .2s; display: flex; align-items: center; justify-content: center; }
.tc-nav button:hover { border-color: var(--purple); color: var(--purple); box-shadow: 0 4px 16px rgba(139,92,246,.2); }
.tc-dots { display: flex; gap: .5rem; }
.tc-dot { width: 8px; height: 8px; border-radius: 100px; background: var(--border); cursor: pointer; transition: all .3s; }
.tc-dot.active { background: var(--purple); width: 24px; }

/* ═══ CSR ════════════════════════════════════════ */
.sec-csr { background: linear-gradient(135deg, #fff7ed 0%, #fff0f0 50%, #fdf4ff 100%); }
.csr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.csr-card {
  background: var(--white); border-radius: 20px; padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s, transform .5s;
}
.csr-card.visible { opacity: 1; transform: translateY(0); }
.csr-card:hover { transform: translateY(-5px) !important; box-shadow: var(--shadow-lg); }
.csr-card i { font-size: 2.2rem; display: block; margin-bottom: .8rem; }
.csr-card strong { display: block; font-size: .95rem; font-weight: 800; color: var(--txt); margin-bottom: .5rem; }
.csr-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.csr-zomato  { border-top: 4px solid #e23744; } .csr-zomato  i { color: #e23744; }
.csr-robin   { border-top: 4px solid #e74c3c; } .csr-robin   i { color: #e74c3c; }
.csr-pfa     { border-top: 4px solid #2ecc71; } .csr-pfa     i { color: #2ecc71; }
.csr-blue    { border-top: 4px solid #3498db; } .csr-blue    i { color: #3498db; }
.csr-drushti { border-top: 4px solid var(--purple); } .csr-drushti i { color: var(--purple); }

/* ═══ CONTACT ════════════════════════════════════ */
.sec-contact {
  background: linear-gradient(135deg, var(--purple2) 0%, var(--blue2) 50%, var(--cyan2) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.contact-gradient-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06), transparent 50%);
}
.white-h2, .sec-contact .sec-h2 { color: #fff; }
.white-sub { color: rgba(255,255,255,.75) !important; }

.contact-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 2.5rem; position: relative; z-index: 2;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 16px; padding: 1rem 1.8rem;
  color: #fff; min-width: 220px;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.contact-card:hover { background: rgba(255,255,255,.25); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.cc-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-card small { display: block; font-size: .68rem; opacity: .7; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.contact-card strong { display: block; font-size: .88rem; font-weight: 700; }

/* color tints per contact */
.cc-gm   .cc-ico { background: rgba(234,67,53,.25); }
.cc-gh   .cc-ico { background: rgba(255,255,255,.25); }
.cc-lin  .cc-ico { background: rgba(10,102,194,.25); }
.cc-insta .cc-ico { background: rgba(214,41,118,.25); }
.cc-wa   .cc-ico { background: rgba(37,211,102,.25); }

/* ═══ FOOTER ═════════════════════════════════════ */
.site-footer {
  background: var(--txt); padding: 2.5rem 7vw; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.f-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .3rem; }
.f-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); }
.f-brand strong { font-size: 1.1rem; color: #fff; font-weight: 700; }
.site-footer p { font-size: .85rem; color: rgba(255,255,255,.5); }
.f-copy { font-size: .72rem; color: rgba(255,255,255,.3) !important; margin-top: .2rem; }

/* ═══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-side { max-width: 480px; }
  .skills-layout { grid-template-columns: 1fr; }
  .homelab-card { grid-template-columns: 1fr; gap: 2rem; }
  .exp-track { display: none; }
  .exp-item { width: 100%; }
  .ei-left, .ei-right { margin: 0 0 2rem; }
  .exp-dot { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-para { max-width: 100%; }
  .hv-floats { display: none; }
  .hero-visual { justify-content: center; }
  .proj-cards { grid-template-columns: 1fr; }
  .skill-cards-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 480px) {
  section { padding: 4rem 5vw; }
  .cert-mosaic { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; align-items: stretch; }
  .contact-card { min-width: auto; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hs-sep { display: none; }
  .tc-slide { padding: 1.8rem 1.5rem; }
}

/* Hide Luffy on mobile */
@media (max-width: 768px) {
  .luffy-pointer {
    display: none;
  }
}

@media (max-width: 600px) {
  .nami-character {
    display: none;
  }
}


@media (max-width: 600px) {
  .zorov-sanji {
    display: none;
  }
}