*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

:root{
  --bg:#05070f;
  --panel:#0c1220;
  --panel2:#111827;
  --text:#f8fafc;
  --muted:#94a3b8;
  --blue:#38bdf8;
  --purple:#8b5cf6;
  --line:rgba(255,255,255,0.1);
}

body{
  font-family:Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.16), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(139,92,246,0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(37,99,235,0.12), transparent 35%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, black, transparent 90%);
  z-index:-3;
}

.glow{
  position:fixed;
  border-radius:999px;
  filter:blur(90px);
  opacity:0.45;
  z-index:-4;
}

.glow-one{
  width:420px;
  height:420px;
  background:#2563eb;
  left:-140px;
  top:120px;
}

.glow-two{
  width:420px;
  height:420px;
  background:#7c3aed;
  right:-160px;
  bottom:80px;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:78px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(5,8,22,0.42);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  z-index:1200;
}

.brand{
  color:white;
  text-decoration:none;
  font-size:22px;
  font-weight:800;
  letter-spacing:1px;
}

.brand span{
  color:#38bdf8;
}

.nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:34px;
}


.nav-links a{
  color:#f8fafc;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:1.6px;
  transition:0.25s ease;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#38bdf8;
  transition:0.25s ease;
}

.nav-links a:hover{
  color:#38bdf8;
}


.nav-links a:hover::after{
  width:100%;
}


.menu-btn{
  display:none;
  margin-left:24px;
  color:white;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
}

.hero{
  width:min(1180px, calc(100% - 32px));
  min-height:100vh;
  margin:0 auto;
  padding:150px 0 90px;
  display:grid;
  grid-template-columns:1.25fr 0.75fr;
  gap:70px;
  align-items:center;
}

.tag{
  display:inline-flex;
  color:var(--blue);
  background:rgba(56,189,248,0.08);
  border:1px solid rgba(56,189,248,0.22);
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:28px;
}

.hero h1{
  font-size:clamp(48px, 8vw, 96px);
  line-height:0.95;
  letter-spacing:-4px;
  margin-bottom:28px;
}

.hero h1 span{
  display:block;
  background:linear-gradient(90deg, #38bdf8, #a78bfa, #f8fafc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-text{
  max-width:720px;
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:36px 0 26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.primary{
  color:#020617;
  background:linear-gradient(135deg, #38bdf8, #a78bfa);
  box-shadow:0 0 35px rgba(56,189,248,0.22);
}

.primary:hover{
  transform:translateY(-3px);
}

.ghost{
  color:white;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
}

.ghost:hover{
  border-color:rgba(56,189,248,0.55);
  transform:translateY(-3px);
}

.social-strip{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.social-strip a{
  color:var(--muted);
  text-decoration:none;
  border:1px solid var(--line);
  padding:9px 15px;
  border-radius:999px;
  background:rgba(255,255,255,0.035);
  transition:0.25s;
}

.social-strip a:hover{
  color:white;
  border-color:var(--blue);
}

.hero-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.profile-shell{
  width:285px;
  height:285px;
  border-radius:42px;
  overflow:hidden;
  padding:7px;
  background:linear-gradient(135deg, #38bdf8, #8b5cf6, transparent);
  box-shadow:0 0 70px rgba(56,189,248,0.25);
  transform:rotate(3deg);
}

.profile-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 28%;
  border-radius:36px;
  transform:rotate(-3deg) scale(1.04);
}

.terminal-card{
  width:100%;
  max-width:420px;
  background:rgba(12,18,32,0.82);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,0.35);
}

.terminal-top{
  height:44px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid var(--line);
}

.terminal-top span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#ef4444;
}

.terminal-top span:nth-child(2){
  background:#f59e0b;
}

.terminal-top span:nth-child(3){
  background:#22c55e;
}

pre{
  color:#c4b5fd;
  font-size:14px;
  line-height:1.8;
  padding:22px;
  white-space:pre-wrap;
}

.section{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:90px 0;
}

.section-label{
  color:var(--blue);
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:2px;
  font-weight:800;
  margin-bottom:20px;
}

.split{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:50px;
  align-items:start;
}

.split h2,
.contact-box h2{
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.05;
  letter-spacing:-2px;
}

.split p,
.contact-box p{
  color:var(--muted);
  line-height:1.75;
  font-size:22px;
  font-weight:400;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.card{
  min-height:260px;
  padding:26px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border:1px solid var(--line);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:rgba(56,189,248,0.45);
  box-shadow:0 24px 80px rgba(0,0,0,0.28);
}

.card span,
.project-number{
  color:var(--blue);
  font-weight:800;
}

.card h3{
  margin:30px 0 14px;
  font-size:22px;
}

.card p{
  color:var(--muted);
  line-height:1.7;
}

.project-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:20px;
}

.project-card{
  min-height:310px;
  padding:32px;
  border-radius:30px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.14), transparent 38%),
    rgba(12,18,32,0.86);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:0.3s;
}

.project-card.large{
  grid-row:span 2;
  min-height:640px;
}

.project-card:hover{
  transform:translateY(-6px);
  border-color:rgba(139,92,246,0.5);
}

.project-card h3{
  font-size:30px;
  line-height:1.15;
}

.project-card p{
  color:var(--muted);
  line-height:1.75;
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

.chips span,
.skills span{
  color:#dbeafe;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
}

.timeline{
  display:grid;
  gap:18px;
}

.timeline-item{
  padding:28px;
  border-radius:26px;
  background:rgba(12,18,32,0.82);
  border:1px solid var(--line);
}

.timeline-item span{
  color:var(--blue);
  font-weight:800;
}

.timeline-item h3{
  margin:10px 0;
}

.timeline-item p{
  color:var(--muted);
  line-height:1.7;
}

.skills{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.contact-box{
  padding:58px;
  border-radius:36px;
  text-align:center;
  border:1px solid rgba(56,189,248,0.25);
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.16), transparent 40%),
    rgba(12,18,32,0.86);
}

.contact-box p{
  max-width:720px;
  margin:0 auto 28px;
}

footer{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:40px 0 60px;
  color:var(--muted);
  border-top:1px solid var(--line);
  text-align:center;
}

.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:0.9s ease;
}

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

@media(max-width:950px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text{
    margin:0 auto;
  }

  .hero-actions,
  .social-strip{
    justify-content:center;
  }

  .split,
  .project-grid{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:repeat(2, 1fr);
  }

  .project-card.large{
    min-height:360px;
  }

  .nav-links{
    position:absolute;
    top:82px;
    right:0;
    width:240px;
    padding:22px;
    border-radius:24px;
    background:rgba(12,18,32,0.96);
    border:1px solid var(--line);
    display:none;
    flex-direction:column;
  }

  .nav-links.show{
    display:flex;
  }

  .menu-btn{
    display:block;
  }
}

@media(max-width:620px){
  .navbar{
    top:12px;
    height:60px;
  }

  .hero{
    padding-top:120px;
  }

  .hero h1{
    letter-spacing:-2px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .profile-shell{
    width:235px;
    height:235px;
  }

  .contact-box{
    padding:34px 20px;
  }
  
}

/* =========================
   PROJECTS PAGE
========================= */

.projects-page{
  padding-top:150px;
}

.page-title{
  font-size:clamp(48px, 7vw, 92px);
  line-height:0.95;
  letter-spacing:-4px;
  margin-bottom:24px;
  background:linear-gradient(
      90deg,
      #f8fafc,
      #38bdf8,
      #a78bfa
  );
  -webkit-background-clip:text;
  color:transparent;
}

.page-intro{
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  margin-bottom:60px;
}

/* Better project cards */

.project-card{
  min-height:310px;
  padding:32px;
  border-radius:30px;
  border:1px solid var(--line);
  background:
      radial-gradient(
          circle at top right,
          rgba(56,189,248,0.14),
          transparent 38%
      ),
      rgba(12,18,32,0.86);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:0.35s;
}

.project-card:hover{
  transform:translateY(-8px);
  border-color:rgba(139,92,246,0.5);
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.project-card h3{
  font-size:30px;
  line-height:1.15;
  margin:15px 0;
}

.project-card p{
  color:var(--muted);
  line-height:1.8;
}

.project-number{
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--blue);
  font-weight:700;
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */

.site-footer{
  margin-top:100px;
  padding:40px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:20px;
}

.footer-social a{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:white;
  font-size:20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  transition:all 0.3s ease;
}

.footer-social a:hover{
  transform:translateY(-5px);
  border-color:#38bdf8;
  color:#38bdf8;
  box-shadow:0 0 25px rgba(56,189,248,0.35);
}

.site-footer p{
  color:#94a3b8;
  font-size:14px;
  margin-top:10px;
}

/* =========================
   PUBLICATIONS PAGE
========================= */

.profile-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:35px 0 70px;
}

.profile-links a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  color:white;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.profile-links a:hover{
  transform:translateY(-4px);
  border-color:#38bdf8;
  color:#38bdf8;
  box-shadow:0 0 25px rgba(56,189,248,0.25);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-bottom:70px;
}

.stat-card{
  padding:28px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.13), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid var(--line);
  text-align:center;
}

.stat-card h3{
  font-size:46px;
  color:#38bdf8;
  margin-bottom:8px;
}

.stat-card p{
  color:#94a3b8;
}

.publication-section{
  margin-bottom:70px;
}

.publication-section h2{
  font-size:34px;
  margin-bottom:24px;
  color:white;
}

.publication-card{
  padding:30px;
  margin-bottom:22px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid var(--line);
  transition:0.3s;
}

.publication-card:hover{
  transform:translateY(-5px);
  border-color:rgba(56,189,248,0.45);
}

.publication-card span{
  color:var(--blue);
  font-weight:800;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.publication-card h3{
  margin:14px 0;
  font-size:26px;
  line-height:1.25;
}

.publication-card p{
  color:var(--muted);
  line-height:1.75;
}

.publication-card.submitted{
  border-color:rgba(139,92,246,0.45);
}
.paper-card{
  display:grid;
  grid-template-columns:1fr 130px;
  gap:30px;
  padding:30px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.paper-title{
  color:#38bdf8;
  font-size:24px;
  line-height:1.25;
  text-decoration:none;
  font-weight:700;
}

.paper-title:hover{
  color:#a78bfa;
}

.paper-authors{
  color:#cbd5e1;
  margin-top:12px;
}

.paper-venue{
  color:#94a3b8;
  margin-top:6px;
  line-height:1.6;
}

.paper-type{
  color:#94a3b8;
  font-style:italic;
  margin-top:6px;
}

.paper-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.paper-tags span{
  border:1px solid rgba(56,189,248,0.35);
  color:#dbeafe;
  padding:7px 12px;
  border-radius:8px;
  font-size:13px;
  background:rgba(255,255,255,0.04);
}

.paper-side{
  text-align:center;
  color:#94a3b8;
}

.paper-side strong{
  display:block;
  font-size:34px;
  color:white;
}

.paper-side span{
  display:block;
  font-size:13px;
  margin-bottom:18px;
}

.paper-side a{
  color:#38bdf8;
  text-decoration:none;
  font-size:14px;
}

@media(max-width:700px){
  .paper-card{
    grid-template-columns:1fr;
  }

  .paper-side{
    text-align:left;
  }
}
/* =========================
   HOMEPAGE PUBLICATION PREVIEW
========================= */

.mini-publication-list{
  display:grid;
  gap:18px;
  margin:28px 0;
}

.mini-publication{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.mini-publication span{
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.mini-publication h3{
  margin:10px 0;
  font-size:22px;
}

.mini-publication p{
  color:#94a3b8;
  line-height:1.7;
}

.publication-btn{
  margin-top:10px;
}
.publication-preview{
  margin-top:30px;
}

.publication-preview ul{
  list-style:none;
  padding:0;
  margin:0 0 30px 0;
}

.publication-preview li{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.publication-preview li strong{
  display:block;
  color:white;
  font-size:18px;
  line-height:1.5;
}

.publication-preview li span{
  color:#38bdf8;
  font-size:14px;
}

/* =========================
   PREMIUM SIDEBAR NAVIGATION
========================= */

.side-nav{
  position:fixed;
  left:24px;
  top:50%;
  transform:translateY(-50%);
  width:220px;
  padding:16px;
  border-radius:24px;
  background:rgba(6,18,35,0.78);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:1000;
}

.side-nav a{
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:center;
  column-gap:12px;
  min-height:48px;
  padding:0 14px;
  border-radius:15px;
  text-decoration:none;
  color:#cbd5e1;
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
  transition:0.3s;
}

.side-nav a i{
  font-size:18px;
  width:28px;
  text-align:center;
  color:#94a3b8;
}

.side-nav a span{
  display:block;
  line-height:1;
}

.side-nav a:hover,
.side-nav a.active{
  background:linear-gradient(135deg, rgba(56,189,248,0.22), rgba(139,92,246,0.14));
  color:white;
  transform:translateX(5px);
}

.side-nav a:hover i,
.side-nav a.active i{
  color:#38bdf8;
}

@media(max-width:1350px){
  .side-nav{
    display:none;
  }
}

/* =========================
   HOMEPAGE PROJECT PREVIEW
========================= */

.homepage-project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
  margin-top:40px;
}

.homepage-project-card{
  padding:26px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

.homepage-project-card:hover{
  transform:translateY(-6px);
  border-color:rgba(56,189,248,0.45);
  box-shadow:0 20px 55px rgba(0,0,0,0.3);
}

.homepage-project-card span{
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.homepage-project-card h3{
  margin:14px 0;
  font-size:22px;
  line-height:1.25;
}

.homepage-project-card p{
  color:#94a3b8;
  line-height:1.7;
  font-size:15px;
}

.homepage-project-btn{
  margin-top:34px;
}

/* =========================
   HOMEPAGE PUBLICATIONS LIST
========================= */

.publication-home-list{
  margin-top:34px;
  display:grid;
  gap:18px;
}

.publication-home-item{
  padding:22px 26px;
  border-radius:22px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

.publication-home-item:hover{
  transform:translateY(-4px);
  border-color:rgba(56,189,248,0.4);
  background:rgba(56,189,248,0.055);
}

.publication-home-item span{
  display:block;
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.publication-home-item h3{
  font-size:20px;
  line-height:1.35;
  color:#f8fafc;
  margin-bottom:6px;
}

.publication-home-item p{
  color:#94a3b8;
  font-size:15px;
  line-height:1.6;
}

.publication-home-btn{
  margin-top:34px;
}
.nav-links a.active{
  color:#38bdf8;
}

.nav-links a.active::after{
  width:100%;
}

/* =========================
   ACADEMIC PAGE
========================= */

.academic-section{
  margin-bottom:75px;
}

.academic-section h2{
  font-size:34px;
  margin-bottom:26px;
  color:white;
}

.academic-card{
  padding:30px;
  margin-bottom:22px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid var(--line);
  transition:0.3s;
}

.academic-card:hover{
  transform:translateY(-5px);
  border-color:rgba(56,189,248,0.45);
}

.academic-card span{
  color:var(--blue);
  font-weight:800;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.academic-card h3{
  margin:14px 0;
  font-size:26px;
  line-height:1.25;
}

.academic-card p{
  color:var(--muted);
  line-height:1.75;
}

.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:16px;
}

.course-card{
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#f8fafc;
  font-weight:700;
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-4px);
  border-color:rgba(56,189,248,0.4);
  color:#38bdf8;
}

.project-category{
  margin-bottom:85px;
  scroll-margin-top:110px;
}

.project-category h2{
  font-size:36px;
  margin-bottom:26px;
  color:white;
}

.detailed-project-card{
  padding:32px;
  margin-bottom:26px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid var(--line);
  transition:0.3s ease;
}

.detailed-project-card:hover{
  transform:translateY(-5px);
  border-color:rgba(56,189,248,0.45);
  box-shadow:0 22px 60px rgba(0,0,0,0.32);
}

.featured-project{
  border-color:rgba(56,189,248,0.35);
}

.project-meta{
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.detailed-project-card h3{
  font-size:28px;
  line-height:1.25;
  margin-bottom:14px;
}

.detailed-project-card p{
  color:#94a3b8;
  line-height:1.75;
  font-size:16px;
}

.project-detail-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:28px;
  margin-top:24px;
}

.project-detail-grid h4{
  color:white;
  font-size:18px;
  margin-bottom:12px;
}

.project-detail-grid ul{
  padding-left:20px;
  color:#94a3b8;
  line-height:1.8;
}

@media(max-width:900px){
  .project-detail-grid{
    grid-template-columns:1fr;
  }
}

/* ==========================================
   PROJECT PAGE LEFT NAVIGATION
========================================== */

.project-side-nav{
    position:fixed;

    left:25px;
    top:50%;

    transform:translateY(-50%);

    width:240px;

    padding:20px;

    display:flex;
    flex-direction:column;
    gap:12px;

    background:rgba(10,18,35,0.82);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;

    z-index:1000;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.30);
}

.project-side-nav a{

    color:#94a3b8;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    padding:13px 16px;

    border-radius:14px;

    transition:all .3s ease;
}

.project-side-nav a:hover{

    color:white;

    background:
        linear-gradient(
            135deg,
            rgba(56,189,248,0.25),
            rgba(139,92,246,0.15)
        );

    transform:translateX(6px);
}

.project-side-nav a.active{

    color:white;

    background:
        linear-gradient(
            135deg,
            rgba(56,189,248,0.35),
            rgba(139,92,246,0.20)
        );

    border:1px solid rgba(56,189,248,0.35);
}

/* move project content to the right */

.projects-page{

    max-width:1100px;

    margin-left:320px;
    margin-right:auto;
}

/* mobile */

@media(max-width:1400px){

    .project-side-nav{
        display:none;
    }

    .projects-page{
        margin-left:auto;
    }
}

/* =========================
   RESUME PAGE
========================= */

.resume-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:35px 0 55px;
}

.resume-actions .btn{
  gap:10px;
}

.resume-summary-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
  margin-bottom:70px;
}

.resume-summary-card{
  padding:28px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 35%),
    rgba(12,18,32,0.86);
  border:1px solid var(--line);
  transition:0.3s ease;
}

.resume-summary-card:hover{
  transform:translateY(-5px);
  border-color:rgba(56,189,248,0.45);
}

.resume-summary-card span{
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.resume-summary-card h3{
  margin:14px 0;
  font-size:24px;
  line-height:1.25;
}

.resume-summary-card p{
  color:#94a3b8;
  line-height:1.75;
}

.resume-viewer-section h2{
  font-size:34px;
  margin-bottom:24px;
}

.resume-viewer{
  width:100%;
  height:850px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
  box-shadow:0 25px 70px rgba(0,0,0,0.35);
}

.resume-viewer iframe{
  width:100%;
  height:100%;
  border:none;
  background:white;
}

@media(max-width:700px){
  .resume-viewer{
    height:650px;
  }
}

/* ==========================================
   RESPONSIVE HOMEPAGE SIDEBAR
========================================== */

/* Large desktop: full sidebar with reserved space */
@media (min-width:1600px){

  .home-page .side-nav{
    display:flex;
  }

  .home-page .hero,
  .home-page .section,
  .home-page footer{
    width:min(1180px, calc(100% - 360px));
    margin-left:300px;
    margin-right:auto;
  }
}


/* Standard laptop / MacBook: compact icon-only sidebar */
@media (min-width:1101px) and (max-width:1599px){

  .home-page .side-nav{
    display:flex;
    width:72px;
    left:16px;
    padding:12px 10px;
    border-radius:20px;
  }

  .home-page .side-nav a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0;
  }

  .home-page .side-nav a span{
    display:none;
  }

  .home-page .side-nav a i{
    width:auto;
    font-size:19px;
  }

  .home-page .side-nav a:hover,
  .home-page .side-nav a.active{
    transform:none;
  }

  .home-page .hero,
  .home-page .section,
  .home-page footer{
    width:min(1120px, calc(100% - 130px));
    margin-left:105px;
    margin-right:25px;
  }
}


/* Tablet and mobile: remove sidebar */
@media (max-width:1100px){

  .home-page .side-nav{
    display:none;
  }

  .home-page .hero,
  .home-page .section,
  .home-page footer{
    width:min(1180px, calc(100% - 32px));
    margin-left:auto;
    margin-right:auto;
  }
}

```css
/* ==========================================
   HONORS, LEADERSHIP & SERVICE PAGE
========================================== */

.honors-page{
    width:min(1180px, calc(100% - 48px));
    max-width:1180px;
    margin:0 auto;
    padding:130px 0 80px;
}


/* ==========================================
   PAGE INTRODUCTION
========================================== */

.honors-page .page-hero{
    margin-bottom:70px;
}

.honors-page .page-title{
    margin:16px 0 22px;
    font-size:clamp(3rem, 6vw, 6rem);
    line-height:1.05;
    overflow-wrap:break-word;
}

.honors-page .page-subtitle{
    max-width:850px;
    line-height:1.75;
}


/* ==========================================
   PAGE SECTIONS
========================================== */

.honors-page .project-category{
    margin-bottom:90px;
}

.honors-page .section-heading{
    margin-bottom:32px;
}

.honors-page .section-heading h2{
    margin:10px 0 12px;
}

.honors-page .section-heading > p:last-child{
    max-width:820px;
    line-height:1.7;
}


/* Keep Honors content visible */
.honors-page .project-category,
.honors-page .contact-cta{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}


/* ==========================================
   HONORS AND AWARDS GRID
========================================== */

.honors-page .honors-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    margin-top:32px;
}

.honors-page .honor-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:28px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.honors-page .honor-card:hover{
    transform:translateY(-5px) !important;
    border-color:rgba(58,176,255,0.45);
    background:rgba(255,255,255,0.055);
    box-shadow:0 16px 38px rgba(0,0,0,0.22);
}


/* ==========================================
   CARD ICONS
========================================== */

.honors-page .honor-icon,
.honors-page .membership-icon{
    width:54px;
    height:54px;
    min-width:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(58,176,255,0.12);
    color:#64c7ff;
    font-size:21px;
}


/* ==========================================
   CARD TYPOGRAPHY
========================================== */

.honors-page .honor-content{
    min-width:0;
}

.honors-page .honor-content h3,
.honors-page .service-card h3,
.honors-page .membership-card h3{
    margin:7px 0 8px;
    line-height:1.35;
}

.honors-page .honor-content p,
.honors-page .service-card p,
.honors-page .membership-card p{
    margin:0 0 12px;
    line-height:1.7;
    color:var(--text-secondary, #b9c5d6);
}

.honors-page .honor-content p:last-child,
.honors-page .service-card p:last-child,
.honors-page .membership-card p:last-child{
    margin-bottom:0;
}

.honors-page .honor-type{
    display:inline-block;
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#64c7ff;
}

.honors-page .honor-organization{
    margin-bottom:10px;
    font-weight:600;
    color:var(--text-primary, #ffffff) !important;
}


/* ==========================================
   PROFESSIONAL SERVICE AND OUTREACH
========================================== */

.honors-page .service-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
    margin-top:32px;
}

.honors-page .service-card{
    height:100%;
    padding:28px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.honors-page .service-card:hover{
    transform:translateY(-5px);
    border-color:rgba(58,176,255,0.45);
    background:rgba(255,255,255,0.055);
    box-shadow:0 16px 38px rgba(0,0,0,0.22);
}

.honors-page .service-card > i{
    display:block;
    margin-bottom:20px;
    color:#64c7ff;
    font-size:26px;
}


/* ==========================================
   PROFESSIONAL MEMBERSHIPS
========================================== */

.honors-page .membership-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    margin-top:32px;
}

.honors-page .membership-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    width:100%;
    max-width:none;
    margin:0;
    padding:28px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.honors-page .membership-card:hover{
    transform:translateY(-5px);
    border-color:rgba(58,176,255,0.45);
    background:rgba(255,255,255,0.055);
    box-shadow:0 16px 38px rgba(0,0,0,0.22);
}

.honors-page .membership-card > div:last-child{
    min-width:0;
}

.honors-page .membership-card strong{
    color:var(--text-primary, #ffffff);
}


/* ==========================================
   CONTACT CALL TO ACTION
========================================== */

.honors-page .contact-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    margin:80px 0 40px;
    padding:40px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
}

.honors-page .contact-cta > div{
    max-width:780px;
}

.honors-page .contact-cta h2{
    margin:12px 0;
    font-size:clamp(1.7rem, 3vw, 2.4rem);
    line-height:1.2;
}

.honors-page .contact-cta p{
    margin:0;
    line-height:1.7;
    color:var(--text-secondary, #b9c5d6);
}

.honors-page .contact-cta .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    padding:14px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.honors-page .contact-cta .primary-btn{
    color:#07101f;
    background:#45c7ff;
}

.honors-page .contact-cta .primary-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 28px rgba(69,199,255,0.25);
}


/* ==========================================
   RESPONSIVE — TABLET
========================================== */

@media(max-width:1000px){

    .honors-page .service-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}


@media(max-width:900px){

    .honors-page .honors-grid,
    .honors-page .membership-list{
        grid-template-columns:1fr;
    }

    .honors-page .contact-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:32px;
    }
}


/* ==========================================
   RESPONSIVE — MOBILE
========================================== */

@media(max-width:700px){

    .honors-page{
        width:min(100% - 36px, 1180px);
        padding-top:105px;
        padding-bottom:60px;
    }

    .honors-page .page-hero{
        margin-bottom:55px;
    }

    .honors-page .page-title{
        font-size:clamp(2.4rem, 11vw, 4rem);
    }

    .honors-page .project-category{
        margin-bottom:65px;
    }

    .honors-page .service-grid{
        grid-template-columns:1fr;
    }

    .honors-page .honor-card,
    .honors-page .membership-card{
        flex-direction:column;
    }

    .honors-page .honor-card,
    .honors-page .service-card,
    .honors-page .membership-card{
        padding:24px;
    }

    .honors-page .contact-cta{
        margin-top:60px;
        padding:26px;
    }
}


@media(max-width:420px){

    .honors-page{
        width:min(100% - 28px, 1180px);
    }

    .honors-page .honor-card,
    .honors-page .service-card,
    .honors-page .membership-card{
        padding:21px;
        border-radius:18px;
    }

    .honors-page .contact-cta{
        padding:22px;
        border-radius:18px;
    }
}

.brand{
  color:white;
  text-decoration:none;
  font-size:22px;
  font-weight:800;
  letter-spacing:1px;
}

.brand span{
  color:#38bdf8;
}
/* ==========================================
   INTERNAL PAGE SIDE NAVIGATION
========================================== */

.page-side-nav{
  position:fixed;
  left:24px;
  top:50%;
  transform:translateY(-50%);

  width:250px;
  max-height:calc(100vh - 130px);
  overflow-y:auto;

  display:flex;
  flex-direction:column;
  gap:9px;

  padding:20px;

  background:rgba(6,18,35,0.82);
  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;

  box-shadow:0 12px 42px rgba(0,0,0,0.30);

  z-index:1000;
}

.page-side-nav-title{
  margin:0 8px 9px;

  color:#38bdf8;

  font-size:12px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.page-side-nav a{
  display:grid;
  grid-template-columns:25px minmax(0, 1fr);
  align-items:center;
  gap:11px;

  min-height:48px;
  padding:11px 13px;

  color:#94a3b8;
  text-decoration:none;

  font-size:14px;
  font-weight:700;
  line-height:1.35;

  border:1px solid transparent;
  border-radius:14px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.page-side-nav a i{
  width:25px;

  color:#94a3b8;

  font-size:16px;
  text-align:center;

  transition:color 0.25s ease;
}

.page-side-nav a span{
  min-width:0;
}

.page-side-nav a:hover{
  color:#ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(56,189,248,0.22),
      rgba(139,92,246,0.13)
    );

  transform:translateX(4px);
}

.page-side-nav a:hover i{
  color:#38bdf8;
}

.page-side-nav a.active{
  color:#ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(56,189,248,0.30),
      rgba(139,92,246,0.17)
    );

  border-color:rgba(56,189,248,0.30);
}

.page-side-nav a.active i{
  color:#38bdf8;
}


/* ==========================================
   PUBLICATIONS PAGE LAYOUT
========================================== */

.publications-page{
  padding-top:150px;
}

.content-with-side-nav{
  width:min(1060px, calc(100% - 320px));
  max-width:1060px;

  margin-left:310px;
  margin-right:auto;
}

.publication-section{
  scroll-margin-top:115px;
}


/* ==========================================
   SMALLER DESKTOP / LAPTOP
========================================== */

@media(max-width:1450px){

  .page-side-nav{
    left:16px;
    width:220px;
    padding:16px;
  }

  .page-side-nav a{
    padding:10px 11px;
    font-size:13px;
  }

  .content-with-side-nav{
    width:min(980px, calc(100% - 275px));
    margin-left:255px;
    margin-right:20px;
  }
}


/* ==========================================
   MACBOOK / TABLET
========================================== */

@media(max-width:1180px){

  .page-side-nav{
    display:none;
  }

  .content-with-side-nav{
    width:min(1100px, calc(100% - 32px));
    margin-left:auto;
    margin-right:auto;
  }
}
/* ==========================================
   ACADEMIC PAGE WITH SIDE NAVIGATION
========================================== */

.academic-page{
  padding-top:150px;
}

.academic-page .academic-section{
  scroll-margin-top:115px;
}
/* Honors sidebar anchor positioning */

.honors-page .project-category{
    scroll-margin-top:115px;
}

/* Honors page layout with sidebar */

.honors-page.content-with-side-nav{
    width:min(1060px, calc(100% - 320px));
    max-width:1060px;
    margin-left:310px;
    margin-right:auto;
}

@media(max-width:1450px){

    .honors-page.content-with-side-nav{
        width:min(980px, calc(100% - 275px));
        margin-left:255px;
        margin-right:20px;
    }
}

@media(max-width:1180px){

    .honors-page.content-with-side-nav{
        width:min(1100px, calc(100% - 32px));
        margin-left:auto;
        margin-right:auto;
    }
}

