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

:root {
  --bg: #050615;
  --bg-deep: #03040d;
  --bg-soft: #090b21;

  --card: rgba(255, 255, 255, 0.072);
  --card-strong: rgba(255, 255, 255, 0.115);

  --text: #ffffff;
  --soft: #d9e1f2;
  --muted: #95a0b8;

  --primary: #8b5cf6;
  --secondary: #2563eb;
  --cyan: #38bdf8;
  --pink: #d946ef;
  --green: #22c55e;

  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(139, 92, 246, 0.42);

  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(139, 92, 246, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.20), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(217, 70, 239, 0.13), transparent 30%);
  z-index: -5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  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: 46px 46px;
  opacity: 0.45;
  z-index: -4;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 1000;
  background: rgba(5, 6, 21, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 6, 21, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--pink));
  transition: 0.25s ease;
}

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

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  margin: 5px 0;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding-top: 118px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.67;
  animation: floatOrb 9s ease-in-out infinite alternate;
}

.orb-one {
  width: 390px;
  height: 390px;
  background: rgba(139, 92, 246, 0.38);
  top: 16%;
  left: -100px;
}

.orb-two {
  width: 430px;
  height: 430px;
  background: rgba(37, 99, 235, 0.34);
  top: 12%;
  right: -130px;
  animation-delay: 2s;
}

.orb-three {
  width: 310px;
  height: 310px;
  background: rgba(217, 70, 239, 0.22);
  bottom: 8%;
  left: 45%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) translateX(0) scale(1);
  }

  to {
    transform: translateY(-45px) translateX(24px) scale(1.08);
  }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.10;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 64px;
}

/* GRID GLOBE */

.hero-content {
  position: relative;
}

.grid-globe {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -115px;
  top: -70px;
  border-radius: 50%;
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
  transform: rotate(-12deg);
  animation: globeFloat 8s ease-in-out infinite alternate;
}

@keyframes globeFloat {
  to {
    transform: rotate(-7deg) translateY(-18px);
  }
}

.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.55);
  box-shadow:
    0 0 22px rgba(139, 92, 246, 0.28),
    inset 0 0 35px rgba(56, 189, 248, 0.12);
}

.ring-one {
  transform: rotateX(65deg);
}

.ring-two {
  transform: rotateY(65deg);
}

.ring-three {
  transform: rotate(45deg) scale(0.78);
  border-color: rgba(56, 189, 248, 0.5);
}

.ring-four {
  transform: rotate(-45deg) scale(0.58);
  border-color: rgba(217, 70, 239, 0.45);
}

.globe-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(139,92,246,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 0 60px rgba(139, 92, 246, 0.18),
    0 0 70px rgba(37, 99, 235, 0.16);
  animation: globeSpin 18s linear infinite;
}

@keyframes globeSpin {
  to {
    transform: rotate(360deg);
  }
}

/* HERO CONTENT */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.status-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--primary), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-description {
  color: var(--soft);
  max-width: 730px;
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.28);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(139, 92, 246, 0.38);
}

.glow-btn {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: white;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.22);
}

.glow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(217, 70, 239, 0.34);
}

.secondary-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: white;
}

.secondary-btn:hover {
  background: var(--card-strong);
  transform: translateY(-4px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
}

.hero-proof div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.hero-proof div:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.hero-proof strong {
  display: block;
  color: white;
  margin-bottom: 6px;
  font-size: 16px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* PROFILE CARD */

.hero-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card {
  width: 390px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(139,92,246,0.45), rgba(56,189,248,0.20), rgba(217,70,239,0.35));
  z-index: -1;
  opacity: 0.34;
  filter: blur(14px);
}

@keyframes floatCard {
  to {
    transform: translateY(-14px);
  }
}

.profile-image-wrap {
  width: 100%;
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 22px;
  background: rgba(255,255,255,0.06);
}

.profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.04);
}

.profile-card h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.profile-title {
  color: var(--muted);
  font-size: 14px;
}

.profile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  margin: 24px 0;
}

.profile-list {
  display: grid;
  gap: 14px;
}

.profile-list div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-list span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.profile-list strong {
  color: var(--soft);
  font-size: 14px;
}

.profile-tags,
.profile-socials,
.chip-row,
.skill-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.profile-tags {
  margin-top: 22px;
}

.profile-tags span,
.chip-row span,
.skill-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.profile-socials {
  margin-top: 22px;
}

.profile-socials a {
  flex: 1;
  min-width: 92px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.profile-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: translateY(-3px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: floatMini 3.5s ease-in-out infinite alternate;
}

@keyframes floatMini {
  to {
    transform: translateY(-10px);
  }
}

.floating-card strong {
  display: block;
  color: var(--cyan);
  font-size: 24px;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.card-one {
  top: 30px;
  right: -8px;
}

.card-two {
  bottom: 75px;
  left: -22px;
}

/* GENERAL */

.section {
  padding: 108px 0;
}

.section-label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}

.section-heading h2,
.center-heading h2,
.achievement-content h2,
.edge-card h2,
.contact-text h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 56px;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.content-block {
  color: var(--soft);
  font-size: 16.5px;
  line-height: 1.86;
}

.content-block p {
  margin-bottom: 18px;
}

.content-block strong {
  color: white;
}

.about-highlights {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.about-highlights div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
}

.about-highlights span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.about-highlights p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
}

/* CARDS */

.experience,
.skills,
.certifications,
.contact {
  background: rgba(255, 255, 255, 0.025);
}

.experience-grid,
.projects-grid,
.skills-layout,
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card,
.project-card,
.skill-card,
.cert-card,
.education-item,
.contact-card,
.achievement-card,
.edge-card,
.skill-bars {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.experience-card,
.project-card,
.skill-card,
.cert-card {
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.experience-card {
  min-height: 395px;
}

.project-card {
  min-height: 355px;
}

.cert-card {
  min-height: 220px;
}

.experience-card::before,
.project-card::before,
.skill-card::before,
.cert-card::before,
.education-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.14), rgba(37,99,235,0.10));
  opacity: 0;
  transition: 0.25s ease;
}

.experience-card:hover,
.project-card:hover,
.skill-card:hover,
.cert-card:hover,
.education-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
}

.experience-card:hover::before,
.project-card:hover::before,
.skill-card:hover::before,
.cert-card:hover::before,
.education-item:hover::before {
  opacity: 1;
}

.experience-card > *,
.project-card > *,
.skill-card > *,
cert-card > *,
.education-item > * {
  position: relative;
  z-index: 2;
}

.card-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.experience-card h3,
.project-card h3,
.skill-card h3,
.cert-card h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.role-meta {
  color: var(--cyan);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 18px;
}

.experience-card p,
.project-card p,
.cert-card p {
  color: var(--soft);
  line-height: 1.75;
  font-size: 15px;
}

.chip-row {
  margin-top: 22px;
}

/* ACHIEVEMENT */

.achievement-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.08)),
    var(--card);
}

.achievement-icon {
  width: 125px;
  height: 125px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.28);
}

.achievement-content p {
  color: var(--soft);
  line-height: 1.82;
  margin-top: 18px;
}

.achievement-details,
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}

.achievement-details div,
.edge-grid div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.achievement-details strong,
.edge-grid strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.achievement-details span,
.edge-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* PROJECTS */

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--soft);
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: white;
}

.project-card.hide {
  display: none;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.project-top span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.project-top strong {
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.featured-project {
  border-color: rgba(56, 189, 248, 0.35);
  background:
    linear-gradient(135deg, rgba(139,92,246,0.14), rgba(56,189,248,0.09)),
    var(--card);
}

/* SKILLS */

.skill-list {
  gap: 10px;
}

.skill-list span {
  font-size: 13px;
}

.skill-bars {
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bar-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.bar-info span,
.bar-info strong {
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.bar div {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--pink));
  transition: width 1.2s ease;
}

.bar.animate div {
  width: var(--width);
}

/* EDUCATION */

.education-list {
  display: grid;
  gap: 18px;
}

.education-item {
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.education-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.education-item p {
  color: var(--soft);
  margin-bottom: 8px;
  line-height: 1.6;
}

.education-item span {
  color: var(--cyan);
  font-weight: 900;
}

/* EDGE */

.edge-card {
  border-radius: 36px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(139,92,246,0.15), rgba(37,99,235,0.10)),
    var(--card);
}

.edge-card > p {
  max-width: 920px;
  color: var(--soft);
  line-height: 1.84;
  font-size: 17px;
  margin-top: 20px;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.contact-text p {
  color: var(--soft);
  line-height: 1.85;
  margin-top: 22px;
  font-size: 17px;
}

.contact-card {
  border-radius: 32px;
  padding: 32px;
}

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

.contact-row span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-row strong,
.contact-row a {
  color: var(--soft);
  word-break: break-word;
  transition: 0.25s ease;
}

.contact-row a:hover {
  color: var(--cyan);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.full-btn {
  width: 100%;
}

/* FOOTER */

.footer {
  padding: 30px 0;
  background: #03040d;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  gap: 18px;
}

.footer-links a {
  color: var(--cyan);
  font-weight: 800;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--pink);
}

/* REVEAL ANIMATION */

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

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

/* RESPONSIVE */

@media (max-width: 1060px) {
  .hero-layout,
  .two-column,
  .contact-layout,
  .achievement-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
    min-height: auto;
  }

  .experience-grid,
  .projects-grid,
  .skills-layout,
  .cert-grid,
  .achievement-details,
  .edge-grid,
  .skill-bars {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    display: none;
  }

  .grid-globe {
    width: 430px;
    height: 430px;
    left: -70px;
    top: -55px;
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(5, 6, 21, 0.97);
  }

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

  .nav-links a {
    padding: 9px 0;
  }

  .hero {
    padding-top: 122px;
  }

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

  .hero-proof,
  .experience-grid,
  .projects-grid,
  .skills-layout,
  .cert-grid,
  .achievement-details,
  .edge-grid,
  .skill-bars {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 0;
  }

  .profile-card {
    width: 100%;
  }

  .profile-image-wrap {
    height: 360px;
  }

  .achievement-card,
  .edge-card {
    padding: 30px;
  }

  .achievement-icon {
    width: 110px;
    height: 110px;
    font-size: 46px;
  }

  .grid-globe {
    width: 360px;
    height: 360px;
    left: -80px;
    top: -35px;
    opacity: 0.24;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-heading h2,
  .center-heading h2,
  .achievement-content h2,
  .edge-card h2,
  .contact-text h2 {
    letter-spacing: -1px;
  }

  .project-top {
    flex-direction: column;
  }

  .profile-image-wrap {
    height: 310px;
  }

  .grid-globe {
    width: 300px;
    height: 300px;
    left: -70px;
    top: -30px;
  }
}