:root{
--bg:#0b1220;--card:rgba(255,255,255,.07);
--text:#eaffff;--accent:#00ffd5}
.light{--bg:#f5f7fa;--card:#fff;--text:#111;--accent:#0077ff}
body{margin:0;font-family:Arial;background:var(--bg);color:var(--text)}
#toggle{position:fixed;top:12px;right:12px;border:none;border-radius:50%;padding:10px;background:var(--accent)}
.container{max-width:420px;margin:auto;padding:20px}
.profile{text-align:center;margin-top:40px}
.profile img{width:120px;border-radius:50%;box-shadow:0 0 25px var(--accent)}
.profile p{color:var(--accent)}
body{
  font-family: 'Rajdhani', sans-serif;
}
.name-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:'Orbitron', sans-serif;
  font-size:24px;
  letter-spacing:3px;
  text-transform:uppercase;
}

.name-text{
  display:inline-block;
}

.verified-badge{
  width:24px;
  height:24px;
  background:#0077ff33;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  animation: glow 2s infinite alternate;
}

.verified-badge svg{
  width:14px;
  height:14px;
  fill:#0077ff;
}

@keyframes glow{
  from{ box-shadow:0 0 5px #0077ff; }
  to{ box-shadow:0 0 15px #0077ff; }
}

.subtitle{
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--accent);
}
.verified{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:pulse 2s infinite}
.verified-blue{background:rgba(0,119,255,.25);color:#0077ff}
.verified svg{width:14px;height:14px;fill:currentColor}
@keyframes pulse{50%{box-shadow:0 0 15px currentColor}}

.section{margin-top:35px}
.section-title{font-size:12px;letter-spacing:2px;color:var(--accent);margin-left:10px}

.pill{display:flex;align-items:center;gap:12px;padding:18px 22px;margin-top:14px;border-radius:40px;background:var(--card);color:var(--text);text-decoration:none}
.icon{width:40px;height:40px;border-radius:50%;background:rgba(0,255,213,.15);display:flex;align-items:center;justify-content:center}
.icon svg{width:20px;height:20px;fill:var(--accent)}
.pill-iot{justify-content:space-between}
.arrow{transition:.3s}
details[open] .arrow{transform:rotate(180deg)}

.project-content{margin-top:14px;padding:16px;border-radius:14px;background:var(--card)}
.badges{display:flex;gap:8px;margin-bottom:10px}
.badge{font-size:11px;padding:4px 10px;border-radius:20px;background:rgba(0,255,213,.15);color:var(--accent)}
.gallery{display:flex;gap:10px;overflow-x:auto}
.gallery img{width:120px;border-radius:10px}

.info-card{padding:16px;border-radius:14px;background:var(--card)}
.info-header{display:flex;gap:10px;align-items:center;color:var(--accent)}

.img-full{position:fixed;inset:0;background:rgba(0,0,0,.9);display:none;align-items:center;justify-content:center;z-index:99999}
.img-full img{max-width:90%;max-height:90%}
.img-full:target{display:flex}
/* ===== CHATBOT GEMINI ===== */
#chatToggle{
  position:fixed;
  bottom:20px;
  right:20px;
  border:none;
  border-radius:50%;
  padding:14px;
  font-size:18px;
  background:var(--accent);
  z-index:9999;
}

#chatbot{
  position:fixed;
  bottom:80px;
  right:20px;
  width:300px;
  max-height:420px;
  background:var(--bg);
  border-radius:16px;
  display:none;
  flex-direction:column;
  box-shadow:0 0 25px rgba(0,0,0,.4);
  z-index:9999;
}

.chat-header{
  padding:12px;
  background:var(--accent);
  color:#000;
  font-weight:bold;
  display:flex;
  justify-content:space-between;
  border-radius:16px 16px 0 0;
}

.chat-body{
  flex:1;
  padding:10px;
  overflow-y:auto;
  font-size:14px;
}

.chat-body .bot{
  background:var(--card);
  padding:8px;
  border-radius:10px;
  margin-bottom:6px;
}

.chat-body .user{
  text-align:right;
  margin-bottom:6px;
}

.chat-input{
  display:flex;
  gap:6px;
  padding:10px;
}

.chat-input input{
  flex:1;
  border:none;
  padding:8px;
  border-radius:10px;
}

.chat-input button{
  border:none;
  border-radius:10px;
  padding:8px 12px;
  background:var(--accent);
}

.footer{text-align:center;margin:40px 0;font-size:12px;opacity:.6}
.cursor{
  animation: blink 1s infinite;
}

@keyframes blink{
  50% { opacity: 0; }
}


