@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');


:root{
 --bg0: #ffffff;
 --bg1: #f6f4ff;


 --glass: rgba(255, 255, 255, 0.85);
 --glass2: rgba(255, 255, 255, 0.95);


 --border: rgba(109, 40, 217, 0.18);


 --text: #0f1020;
 --muted: rgba(15, 16, 32, 0.65);


 --accent: #6d28d9;      /* PURPLE */
 --accent2: #8b5cf6;     /* LIGHT PURPLE */


 --shadow: 0 18px 45px rgba(109,40,217,0.15);
 --radius: 18px;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
 margin:0;
 font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
 color: var(--text);
 background:
   radial-gradient(900px 600px at 20% 10%, rgba(109,40,217,0.12), transparent 60%),
   radial-gradient(900px 600px at 85% 20%, rgba(139,92,246,0.15), transparent 60%),
   #ffffff;
}


/* TOPBAR */
.topbar{
 position:sticky;
 top:0;
 z-index:100;
 display:flex;
 align-items:center;
 justify-content:space-between;
 padding:14px 22px;
 background: rgba(252, 249, 255, 0.8);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border);
}


.brand{
 width:42px;height:42px;
 display:flex;
 align-items:center;
 justify-content:center;
 border-radius:999px;
 font-family:Poppins, sans-serif;
 font-weight:900;
 color: var(--accent);
 text-decoration:none;
 border:1px solid rgba(109,40,217,0.25);
 background: rgba(109,40,217,0.08);
}


.nav{ display:flex; gap:22px; }
.nav-link{
 text-decoration:none;
 color: rgba(15, 16, 32, 0.70);
 font-weight: 700;
 font-size: 12px;
 letter-spacing: 0.10em;
 text-transform: uppercase;
 padding:10px 10px;
 border-radius: 12px;
 transition: 0.15s ease;
}
.nav-link:hover{
 color: var(--accent);
 background: rgba(109,40,217,0.08);
}




.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 padding:11px 18px;
 border-radius:999px;
 text-decoration:none;
 font-weight:800;
 border:1px solid rgba(109,40,217,0.25);
 color: var(--accent);
 background: #fff;
 transition: 0.2s ease;
}
.btn:hover{
 transform: translateY(-2px);
 background: rgba(109,40,217,0.06);
}
.btn.primary{
 background: var(--accent);
 border-color: rgba(109,40,217,0.35);
 color: #fff;
}
.btn.ghost{
 background: #fff;
 border-color: rgba(15,16,32,0.12);
 color: rgba(15,16,32,0.85);
}
.btn.ghost:hover{ background: rgba(255,255,255,0.07); }
.btn.outline{
 background: #fff;
 color: var(--accent);
 border-color: rgba(109,40,217,0.35);
}


/* LAYOUT */
.wrap{
 max-width: 1080px;
 margin: 0 auto;
 padding: 22px 18px 90px;
}
.section{
 padding: 86px 0;
 scroll-margin-top: 100px;
}


/* HERO */
.hero{
 min-height: calc(100vh - 80px);
 display:flex;
 align-items:center;
 justify-content:center;
 text-align:center;
}
.hero-inner{
 max-width: 900px;
 margin: 0 auto;
}
.kicker{
 color: var(--accent);
 font-family: Space Mono, monospace;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 margin: 0 0 12px;
}
.hero-title{
 font-family:Poppins, sans-serif;
 font-weight: 900;
 letter-spacing: -0.03em;
 font-size: clamp(54px, 7vw, 100px);
 margin: 0 0 12px;
}
.dot{ color: var(--accent); }
.hero-typing{
 margin: 0 0 18px;
 font-weight: 700;
 font-size: clamp(18px, 2.2vw, 34px);
 color: rgba(15,16,32,0.75);
 min-height: 2.4em;
}
.typing{ color: var(--accent); }
.cursor{
 display:inline-block;
 width: 10px;
 height: 1.2em;
 border-left: 3px solid var(--accent);
 transform: translateY(3px);
 margin-left: 8px;
 animation: blink 1s infinite;
}
@keyframes blink{ 0%,50%,100%{opacity:1;} 25%,75%{opacity:0;} }


.hero-text{
 max-width: 780px;
 margin: 0 auto 18px;
 color: var(--muted);
 line-height: 1.8;
 font-size: 16px;
}


.hero-actions{
 display:flex;
 justify-content:center;
 gap: 16px;
 flex-wrap:wrap;
 margin-top: 22px;
}
.static{
 color: rgba(15,16,32,0.75);
}


.typing{
 color: var(--accent);
 font-weight: 800;
}


.cursor{
 border-left: 3px solid var(--accent);
}

/* FADE-IN ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CARD ANIMATION */
.reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease;
}

.reveal-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* HOVER GLOW ✨ */
.skill-card {
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(109,40,217,0.35);
}

/* SOFT FLOAT EFFECT */
.skill-card {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* SOCIAL */
.social{
 display:flex;
 justify-content:center;
 gap: 14px;
 margin: 18px 0 4px;
}
.icon-btn{
 width: 44px;
 height: 44px;
 border-radius: 999px;
 border: 1px solid rgba(255,255,255,0.12);
 background: rgba(255,255,255,0.05);
 display:flex;
 align-items:center;
 justify-content:center;
 transition: 0.2s ease;
}
.icon-btn:hover{
 transform: translateY(-3px);
 border-color: rgba(0, 0, 0, 0.45);
 box-shadow: 0 12px 30px rgba(14, 14, 14, 0.12);
}
.icon-btn svg{
 width: 20px;height:20px;
 fill: rgba(180, 143, 226, 0.86);
}
.icon-btn:hover svg{ fill: var(--accent); }


/* SCROLL ARROW */
.scroll{
 display:inline-flex;
 justify-content:center;
 margin-top: 34px;
 text-decoration:none;
}
.scroll-arrow{
 width: 14px;
 height: 14px;
 border-right: 3px solid var(--accent);
 border-bottom: 3px solid var(--accent);
 transform: rotate(45deg);
 animation: bounce 1.2s infinite;
}
@keyframes bounce{
 0%,100%{ transform: translateY(0) rotate(45deg); }
 50%{ transform: translateY(6px) rotate(45deg); }
}


/* TITLES */
.section-title{
 text-align:center;
 margin: 0 0 20px;
 font-family:Poppins, sans-serif;
 font-weight: 900;
 letter-spacing: -0.02em;
 font-size: 40px;
}
.section-title.neon{
 color: var(--accent);
 font-family: Space Mono, monospace;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}
.section-title.neon.big{
 font-size: 46px;
}


/* GLASS CARDS */
.glass{
 background: var(--glass);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 backdrop-filter: blur(10px);
}
.about-card{
 max-width: 860px;
 margin: 0 auto;
 padding: 22px 22px;
 color: var(--muted);
 line-height: 1.9;
 font-size: 16px;
}
.about-card strong{ color: var(--text); }


/* EDUCATION */
.edu-grid{
 max-width: 980px;
 margin: 26px auto 0;
 display:grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 18px;
}
.edu-card{
 padding: 20px;
 transition: 0.22s ease;
 border-color: rgba(124,255,203,0.14);
 background: var(--glass2);
}
.edu-card:hover{
 transform: translateY(-6px);
 border-color: rgba(124,255,203,0.40);
 box-shadow: 0 26px 70px rgba(124,255,203,0.10);
}
.edu-head{
 display:flex;
 gap: 14px;
 align-items:center;
 margin-bottom: 12px;
}
.edu-ico{
 width: 46px; height: 46px;
 display:flex;align-items:center;justify-content:center;
 border-radius: 14px;
 background: rgba(124,255,203,0.10);
 border: 1px solid rgba(124,255,203,0.18);
 font-size: 22px;
}
.edu-school{
 font-family: Space Mono, monospace;
 font-weight: 700;
 color: var(--text);
 font-size: 18px;
}
.edu-degree{
 color: var(--muted);
 margin-top: 2px;
 font-family: Space Mono, monospace;
 font-size: 14px;
}
.edu-meta{
 display:flex; flex-wrap:wrap;
 gap: 10px;
 margin-top: 10px;
}


/* PILLS */
.pill{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 padding: 10px 14px;
 border-radius: 999px;
 border: 1px solid rgba(109,40,217,0.18);
 background: rgba(109,40,217,0.08);
 color: var(--accent);
 font-size: 12px;
 font-weight: 800;
}
.bigpill{
 padding: 12px 16px;
 border-color: rgba(124,255,203,0.18);
}
.pill-row{
 display:flex;
 justify-content:center;
 flex-wrap:wrap;
 gap: 12px;
 margin-top: 14px;
}


/* SKILLS */
.skills-block{ margin-top: 36px; }
.skills-sub{
 margin: 0 0 14px;
 font-family: Space Mono, monospace;
 color: var(--accent2);
 letter-spacing: 0.06em;
 font-size: 28px;
 text-transform: none;
}
.skills-grid{
 display:grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 18px;
}
.skill-card{
 padding: 22px;
 border-radius: 18px;
 background: #ffffff;
 border: 1px solid rgba(109,40,217,0.25);
 box-shadow: 0 14px 30px rgba(109,40,217,0.12);


 display:flex;
 align-items:center;
 gap: 14px;


 transition: all 0.25s ease;
}


.skill-card:hover{
 transform: translateY(-6px);
 box-shadow: 0 26px 60px rgba(109,40,217,0.25);
 border-color: var(--accent);
}
.skill-ico{
 width: 52px;
 height: 52px;
 border-radius: 16px;


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


 background: rgba(109,40,217,0.12);
 border: 1px solid rgba(109,40,217,0.3);


 color: var(--accent);
 font-family: Space Mono, monospace;
 font-weight: 700;
}
.skill-name{
 color: rgba(15,16,32,0.85);
 font-size: 18px;
 font-weight: 800;
}


/* PROJECTS */
.proj-grid{
 margin-top: 26px;
 display:grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 18px;
}
.proj-card{
 padding: 22px;
 text-decoration:none;
 color: inherit;
 transition: 0.22s ease;
 border-color: rgba(124,255,203,0.14);
}
.proj-card:hover{
 transform: translateY(-6px);
 border-color: rgba(124,255,203,0.40);
 box-shadow: 0 26px 70px rgba(124,255,203,0.10);
}
.proj-title{
 font-family: Space Mono, monospace;
 font-size: 22px;
 color: rgba(255,255,255,0.92);
 margin-bottom: 10px;
}
.proj-desc{
 color: var(--muted);
 line-height: 1.7;
 margin-bottom: 14px;
}
.proj-tags{ display:flex; flex-wrap:wrap; gap: 10px; }


.link{ color: var(--accent); }


/* EXPERIENCE */
.exp-grid{
 max-width: 1000px;
 margin: 30px auto 0;
 display: grid;
 grid-template-columns: 1fr;
 gap: 22px;
}


.exp-card{
 padding: 22px;
 transition: all 0.25s ease;
}


.exp-card:hover{
 transform: translateY(-6px);
 box-shadow: 0 26px 60px rgba(109,40,217,0.25);
 border-color: var(--accent);
}


.exp-header{
 display: flex;
 align-items: center;
 gap: 14px;
 margin-bottom: 12px;
 flex-wrap: wrap;
}


.exp-icon{
 width: 46px;
 height: 46px;
 border-radius: 14px;
 background: rgba(109,40,217,0.12);
 border: 1px solid rgba(109,40,217,0.35);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 22px;
}


.exp-title{
 margin: 0;
 font-size: 20px;
 font-weight: 900;
}


.exp-org{
 margin: 2px 0 0;
 font-size: 14px;
 color: var(--muted);
}


.exp-date{
 margin-left: auto;
 font-size: 13px;
 font-weight: 700;
 color: var(--accent);
}


.exp-list{
 margin: 12px 0 0;
 padding-left: 18px;
 color: var(--muted);
}


.exp-list li{
 margin-bottom: 8px;
 line-height: 1.6;
}


/* CONTACT SECTION */
.contact {
 text-align: center;
 padding-bottom: 120px;
}


.contact-title {
 font-family: Poppins, sans-serif;
 font-weight: 900;
 font-size: 48px;
 color: var(--accent2);
 margin-bottom: 20px;
}


.contact-text {
 max-width: 680px;
 margin: 0 auto 32px;
 color: var(--muted);
 line-height: 1.8;
 font-size: 16px;
}


/* Say Hello Button */
.contact-btn {
 display: inline-block;
 padding: 16px 34px;
 background: #9477ea;
 color: #ffffff;
 font-weight: 800;
 font-size: 16px;
 border-radius: 12px;
 text-decoration: none;
 transition: all 0.25s ease;
 box-shadow: 0 18px 40px rgba(255, 255, 255, 0.963);
}


.contact-btn:hover {
 transform: translateY(-3px);
 box-shadow: 0 28px 70px rgba(171, 109, 248, 0.55);
}


/* Contact Icons */
.contact-icons {
 margin-top: 40px;
 display: flex;
 justify-content: center;
 gap: 26px;
}


.contact-icons a {
 width: 42px;
 height: 42px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 opacity: 0.7;
 transition: all 0.2s ease;
}


.contact-icons a:hover {
 opacity: 1;
 transform: translateY(-4px);
}


.contact-icons svg {
 width: 26px;
 height: 26px;
 fill: #bc8fd7;
}


.contact-icons a:hover svg {
 fill: var(--accent2);
}


.proj-header{
 display:flex;
 justify-content:space-between;
 align-items:center;
}


.proj-title{
 font-size: 24px;
 font-weight: 900;
 color: #c49dfb;
}


.proj-meta{
 font-size: 14px;
 color: rgba(255,255,255,0.6);
 margin-bottom: 10px;
}


.proj-desc{
 color: rgba(255,255,255,0.75);
 line-height: 1.7;
 margin-bottom: 14px;
}


.proj-links{
 margin-top: 18px;
 border-top: 1px solid rgba(255,255,255,0.08);
 padding-top: 14px;
}


.proj-link{
 display:inline-flex;
 align-items:center;
 gap: 8px;
 text-decoration:none;
 color: rgba(255,255,255,0.7);
 font-weight: 700;
}


.proj-link svg{
 width:18px;
 height:18px;
 fill: currentColor;
}


.proj-link:hover{
 color: #ab72d6;
}




/* RESPONSIVE */
@media (max-width: 900px){
 .nav{ display:none; }
}



