
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f4f7ff;
  color: #1e2a45;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #e8eef8; }
::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 5px; }

/* ------ SCROLL REVEAL ------ */
.slide-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ------- NAVBAR ------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 68px;
  padding: 0 4%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dde5f7;
  box-shadow: 0 2px 20px rgba(59, 130, 246, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a i { font-size: 0.75rem; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #3b82f6;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-hire-link {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-hire-link::after { display: none !important; }
.nav-hire-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45) !important;
  color: #fff !important;
}

/* ------ SECTION BASE ------ */
section {
  padding: 100px 5%;
  position: relative;
}
.sec-header {
  text-align: center;
  margin-bottom: 65px;
}
.sec-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #3b82f6;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.sec-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-header h2 span {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 4px;
  margin: 0 auto 16px;
}
.sec-header p {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ------ BUTTONS ------ */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.35);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45);
}
.btn-outline {
  background: transparent;
  color: #3b82f6;
  padding: 13px 28px;
  border-radius: 12px;
  border: 2px solid #3b82f6;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: #eff6ff;
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: #1e2a45;
  padding: 13px 28px;
  border-radius: 12px;
  border: 1px solid #dde5f7;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
}
.btn-light:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-3px);
}

/* ------ HOME ------ */
#home {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 55%, #eef2ff 100%);
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07), transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
  border-radius: 50%;
}
#home::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06), transparent 70%);
  bottom: -60px;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
}
.home-left {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.home-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.badge {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.badge-blue {
  background: #eff6ff;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.home-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.home-left h1 span {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-role {
  font-size: 1.05rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 16px;
}
.home-role strong { color: #6366f1; }
.home-desc {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 32px;
  max-width: 500px;
}
.home-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.home-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .lbl {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.home-right {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-right: 120px;
}
.photo-ring-outer {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e0eeff, #f4f7ff);
  border: 5px solid #fff;
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1), 0 20px 60px rgba(59, 130, 246, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-ring-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.float-tag {
  position: absolute;
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.14);
  animation: floatY 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-tag .ft-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.float-tag .ft-label { font-size: 0.72rem; color: #64748b; font-weight: 500; }
.float-tag .ft-value { font-size: 0.83rem; color: #1e2a45; font-weight: 800; }

/* positions & delays */
.float-tag.t1 { bottom: 40px;  left: -60px;  animation-delay: 0s;    }
.float-tag.t2 { top:    40px;  left: -70px;  animation-delay: 0.8s;  }
.float-tag.t3 { top:    40px;  right: -70px; animation-delay: 1.6s;  }
.float-tag.t4 { bottom: 40px;  right: -60px; animation-delay: 2.4s;  }

/* icon colour themes */
.ft-icon.blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; }
.ft-icon.green  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.ft-icon.indigo { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.ft-icon.orange { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
}
.scroll-hint:hover { color: #3b82f6; }
.scroll-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  animation: bounce 1.5s infinite;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ------ ABOUT ------ */
#about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-id-card {
  border-radius: 20px;
  padding: 32px;
  background: linear-gradient(145deg, #f0f7ff, #ffffff);
  border: 1px solid #dde5f7;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.3s;
}
.about-id-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18);
}
.about-id-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.about-id-card .role {
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.about-id-card .college {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 22px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 0.85rem;
  color: #64748b;
}
.info-row i { color: #3b82f6; width: 18px; }
.cur-role-box {
  margin-top: 20px;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.cur-role-box .lbl {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.cur-role-box .val {
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
}
.cur-role-box .co {
  color: #64748b;
  font-size: 0.78rem;
  margin-top: 3px;
}
.about-right > p {
  color: #64748b;
  line-height: 1.85;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.mini-card {
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.3s;
}
.mini-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18);
}
.mini-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #3b82f6;
  font-size: 1.2rem;
}
.mini-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; }
.mini-card p { font-size: 0.75rem; color: #64748b; line-height: 1.5; }

/* ----- WHAT I DO ----- */
#whatido {
  background: linear-gradient(145deg, #f4f7ff, #eef2fc);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18); }
.service-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.si-frontend  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.si-backend   { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.si-database  { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.si-fullstack { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.82rem; color: #64748b; line-height: 1.7; }

/* ----- SKILLS ----- */
#skills { background: #fff; }
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.skills-box {
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 1px solid #dde5f7;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
}
.skills-box h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.skills-box h3 i { color: #3b82f6; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 14px; }
.tech-tag {
  padding: 12px 22px;
  border-radius: 40px;
  border: 2px solid #dde5f7;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e2a45;
  background: #fff;
  transition: all 0.3s;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 12px rgba(59, 130, 246, 0.08);
}
.tech-tag i { font-size: 1.2rem; color: #3b82f6; transition: all 0.3s; }
.tech-tag:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: #eff6ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.18);
}
.tech-tag:hover i { color: #6366f1; transform: rotate(-10deg) scale(1.2); }
.courses-list { list-style: none; }
.courses-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 7px;
  background: #fff;
  border: 1px solid #dde5f7;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}
.courses-list li:hover,
.courses-list li.active {
  border-color: #3b82f6;
  color: #3b82f6;
  background: #eff6ff;
}
.courses-list li i { color: #3b82f6; font-size: 0.45rem; }
.courses-list li.highlight {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  font-weight: 800;
  color: #3b82f6;
}

/* ------ PROJECTS ------ */
#projects { background: linear-gradient(145deg, #f4f7ff, #eef2fc); }
.projects-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.project-item {
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.3);
}
.proj-img-banner {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}
.proj-status {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.banner-1 { background: linear-gradient(135deg, #f59e0b, #fb923c); }
.banner-2 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.banner-3 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.banner-4 { background: linear-gradient(135deg, #ef4444, #f97316); }
.proj-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.06);
  line-height: 1;
}
.project-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.project-item p { font-size: 0.85rem; color: #64748b; line-height: 1.75; margin-bottom: 14px; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.proj-tag {
  padding: 6px 14px;
  border-radius: 30px;
  border: 2px solid #dde5f7;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e2a45;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.07);
  transition: all 0.3s;
  cursor: default;
}
.proj-tag i { font-size: 0.85rem; color: #3b82f6; }
.proj-tag:hover { border-color: #3b82f6; color: #3b82f6; background: #eff6ff; transform: translateY(-2px); }
.proj-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.proj-link:hover { gap: 10px; }
.proj-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.proj-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #f59e0b;
}

/* ----- RESUME ----- */
#resume { background: #fff; }
.resume-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.resume-sec-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.resume-sec-title i { color: #3b82f6; }
.timeline {
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  border-radius: 2px;
}
.tl-item { position: relative; margin-bottom: 24px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #3b82f6;
}
.tl-card {
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 1px solid #dde5f7;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.3s;
}
.tl-card:hover { border-color: rgba(59, 130, 246, 0.35); box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18); }
.tl-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.tl-card h4 { font-size: 0.95rem; font-weight: 800; }
.tl-date {
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  color: #3b82f6;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.tl-card .org { color: #64748b; font-size: 0.78rem; margin-bottom: 8px; font-weight: 600; }
.tl-card p { font-size: 0.82rem; color: #64748b; line-height: 1.7; }
.resp-sec { margin-top: 26px; }
.resp-card {
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 1px solid #dde5f7;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
}
.resp-card ul { list-style: none; }
.resp-card ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  border-bottom: 1px solid #dde5f7;
}
.resp-card ul li:last-child { border-bottom: none; }
.resp-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.quick-box,
.comp-box,
.dl-box {
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 1px solid #dde5f7;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  margin-bottom: 22px;
}
.quick-box h3,
.comp-box h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.info-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #dde5f7;
  font-size: 0.82rem;
}
.info-line:last-child { border-bottom: none; }
.info-line .key {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-line .key i { color: #3b82f6; width: 16px; }
.info-line .val { font-weight: 700; }
.comp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.comp-tag {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  color: #3b82f6;
  font-size: 0.74rem;
  font-weight: 700;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
}
.dl-box { text-align: center; }
.dl-box .dl-icon { font-size: 2.6rem; color: #3b82f6; margin-bottom: 12px; display: block; }
.dl-box h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.dl-box p { font-size: 0.8rem; color: #64748b; margin-bottom: 18px; }
.dl-btn {
  display: flex;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.dl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45); }

/* ------ HIRE ME BANNER ------ */
#hireme {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #7c3aed 100%);
  padding: 90px 5%;
  min-height: auto;
}
.hire-banner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hire-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.hire-banner p { opacity: 0.85; font-size: 0.95rem; line-height: 1.75; margin-bottom: 26px; }
.hire-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}
.perk i { color: #67e8f9; }
.hire-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: #3b82f6;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 13px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-3px); }

/* ------ CONTACT ------ */
#contact { background: #f4f7ff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form-box {
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
}
.form-field { margin-bottom: 16px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 18px;
  background: #eef2fc;
  border: 1.5px solid #dde5f7;
  border-radius: 12px;
  color: #1e2a45;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.form-field textarea { min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a0aec0; }
.send-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.send-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45); }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: #fff;
  border: 1px solid #dde5f7;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: #3b82f6;
  transform: translateX(5px);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.18);
}
.contact-card .ci {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-card:hover .ci {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
}
.contact-card .cl {
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-card .cv { font-size: 0.86rem; font-weight: 700; }

/* ------ FOOTER ------ */
footer {
  background: #1e2a45;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.footer-copy span { color: #06b6d4; font-weight: 700; }
.footer-icons { display: flex; gap: 10px; }
.footer-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-icons a:hover { background: #3b82f6; border-color: #3b82f6; color: #fff; }
.back-top {
  color: #06b6d4;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  #home {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .home-badges, .home-btns, .home-stats { justify-content: center; }
  .home-right { margin-top: 20px; margin-right: 0; }
  .photo-ring-outer { width: 260px; height: 260px; }
  .float-tag.t3, .float-tag.t4 { display: none; }
  .float-tag.t1 { bottom: -10px; left: -10px; }
  .float-tag.t2 { top: -10px; left: -10px; }
  .about-grid, .skills-grid, .resume-grid, .contact-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr 1fr; }
  .projects-list { grid-template-columns: 1fr; }
  .nav-links .hide-mobile { display: none; }
  section { padding: 80px 4%; }
}

