*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none
}

:root {
  --bg: #060a12;
  --bg2: #0b1120;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --accent: #38bdf8;
  --accent-2: #0ea5e9;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

/* UTILITIES */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 2.8rem;
  border-radius: 5rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: .03em
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 99, 235, .4)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(37, 99, 235, .55)
}

.btn-outline {
  border: 1.5px solid rgba(37, 99, 235, .5);
  color: var(--text);
  background: transparent
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, .12);
  transform: translateY(-3px)
}

.section-header {
  text-align: center;
  margin-bottom: 6rem
}

.section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37, 99, 235, .1);
  padding: .5rem 1.6rem;
  border-radius: 5rem;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(37, 99, 235, .2)
}

.section-title {
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--text)
}

section {
  padding: 10rem 8%
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition)
}

.header.scrolled {
  background: rgba(6, 10, 18, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border)
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text)
}

.logo-bracket {
  color: var(--primary)
}

.navbar {
  display: flex;
  gap: .4rem
}

.nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .8rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(37, 99, 235, .12)
}

.nav-link.active {
  color: var(--primary)
}

#menu-icon {
  font-size: 2.8rem;
  color: var(--text);
  display: none;
  cursor: pointer
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding-top: 12rem;
  position: relative;
  overflow: hidden
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0) rotate(0deg);
    opacity: 0
  }

  10% {
    opacity: 0.5
  }

  90% {
    opacity: 0.2
  }

  100% {
    transform: translateY(-10vh) scale(1) rotate(360deg);
    opacity: 0
  }
}

.hero-content {
  flex: 1;
  max-width: 60rem;
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .2);
  padding: .6rem 1.4rem;
  border-radius: 5rem;
  margin-bottom: 2rem
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: .6
  }
}

.hero-greeting {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: .8rem
}

.hero-name {
  font-size: clamp(3.6rem, 5.5vw, 6.5rem);
  font-weight: 800;
  margin-bottom: 1.6rem;
  line-height: 1.1
}

.typed-wrapper {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
  color: var(--text-muted)
}

.multiple-text {
  color: var(--primary);
  font-weight: 700
}

.hero-bio {
  font-size: 1.7rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3.2rem;
  max-width: 52rem
}

.hero-actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem
}

.social-links {
  display: flex;
  gap: 1.2rem
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 1.5px solid var(--card-border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.8rem;
  transition: var(--transition)
}

.social-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, .1);
  transform: translateY(-3px)
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  z-index: 1
}

.hero-img-wrapper {
  position: relative;
  width: 36rem;
  height: 36rem
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(37, 99, 235, .35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.06)
  }
}

.hero-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(37, 99, 235, .35);
  background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(56, 189, 248, .1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  animation: floatUp 5s ease-in-out infinite;
  position: relative;
  z-index: 1
}

.hero-avatar-placeholder i {
  font-size: 8rem;
  color: var(--primary);
  opacity: .7
}

.hero-avatar-placeholder span {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 500
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(37, 99, 235, .35);
  animation: floatUp 5s ease-in-out infinite;
  position: relative;
  z-index: 1
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.tech-card {
  display: none
}

.tc-1,
.tc-2,
.tc-3,
.tc-4 {
  display: none
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ORBIT AROUND PROFILE */
.hero-orbit-wrapper {
  position: relative;
  width: 44rem;
  height: 44rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.ripple-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.ripple {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  animation: rippleAnim 4s linear infinite;
}

.ripple-2 {
  animation-delay: 1.33s;
}

.ripple-3 {
  animation-delay: 2.66s;
}

@keyframes rippleAnim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  z-index: 1
}

.scroll-mouse {
  width: 2.4rem;
  height: 3.8rem;
  border: 2px solid var(--card-border);
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  padding-top: .6rem
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(12px);
    opacity: 0
  }
}

/* ABOUT */
.about {
  background: var(--bg2)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 38rem;
  gap: 6rem;
  align-items: start
}

.about-text p,
.about-para {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2
}

.about-para {
  font-style: normal;
  font-weight: 400
}

.about-text strong {
  color: var(--text)
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition)
}

.stat-card:hover {
  border-color: rgba(37, 99, 235, .4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow)
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: .4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em
}

.edu-card {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  margin-bottom: 2.4rem;
  transition: var(--transition)
}

.edu-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow)
}

.edu-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(37, 99, 235, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary);
  flex-shrink: 0
}

.edu-details h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .4rem
}

.edu-details p {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: .4rem
}

.edu-meta {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.45rem;
  color: var(--text-muted)
}

.info-item i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0
}

.info-item a:hover {
  color: var(--primary)
}

/* EXPERIENCE */
.experience {
  background: var(--bg)
}

.timeline {
  position: relative;
  max-width: 80rem;
  margin: 0 auto
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.8rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent)
}

.timeline-item {
  position: relative;
  padding-left: 5.5rem;
  margin-bottom: 4rem
}

.timeline-dot {
  position: absolute;
  left: .6rem;
  top: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--gradient);
  border-radius: 50%;
  border: 3px solid var(--bg);
  z-index: 1;
  transition: var(--transition)
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 6px rgba(37, 99, 235, .2)
}

.timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.8rem;
  transition: var(--transition)
}

.timeline-card:hover {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: var(--shadow-glow);
  transform: translateX(6px)
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 1.4rem
}

.timeline-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .4rem
}

.timeline-company {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 500
}

.timeline-date {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  background: rgba(255, 255, 255, .05);
  padding: .5rem 1.2rem;
  border-radius: 5rem;
  border: 1px solid var(--card-border)
}

.timeline-card>p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.6rem
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem
}

.timeline-tags span {
  font-size: 1.2rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  border-radius: 5rem;
  background: rgba(37, 99, 235, .1);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, .2)
}

/* PROJECTS */
.projects {
  background: var(--bg2)
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  justify-content: center
}

.filter-btn {
  padding: .9rem 2.2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--card-bg);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  transition: var(--transition)
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .35)
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  margin-bottom: 6rem;
  justify-content: center;
}

.project-card {
  width: 36rem;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition)
}

.project-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px)
}

.project-card.hidden {
  display: none
}

.project-card.featured {
  grid-column: span 2
}

.project-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  height: 22rem
}

.project-card.featured .project-img-wrap {
  height: 28rem
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.project-card:hover .project-img {
  transform: scale(1.06)
}

.project-overlay {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem
}

.project-status {
  font-size: 1.2rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 5rem;
  background: rgba(245, 158, 11, .15);
  color: var(--accent-2);
  border: 1px solid rgba(245, 158, 11, .3)
}

.project-body {
  padding: 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.project-category {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(37, 99, 235, .1);
  padding: .3rem 1rem;
  border-radius: 5rem;
  border: 1px solid rgba(37, 99, 235, .2)
}

.project-link {
  font-size: 2rem;
  color: var(--text-muted);
  transition: var(--transition)
}

.project-link:hover {
  color: var(--primary)
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700
}

.project-desc {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem
}

.project-stack span {
  font-size: 1.15rem;
  font-weight: 500;
  padding: .35rem .9rem;
  border-radius: 5rem;
  background: rgba(56, 189, 248, .08);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, .2)
}

.dashboards {
  background: var(--bg2)
}

.dash-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.dash-big-card {
  width: 42rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition)
}

.dash-big-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px)
}

.dash-big-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 20rem
}

.dash-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.dash-big-card:hover .dash-big-img img {
  transform: scale(1.04)
}

.dash-big-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition)
}

.dash-big-img:hover .dash-big-overlay {
  opacity: 1
}

.dash-big-overlay i {
  font-size: 3.2rem;
  color: #fff
}

.dash-big-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.dash-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .2);
  padding: .4rem 1rem;
  border-radius: 5rem;
  width: fit-content
}

.dash-tool-badge img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain
}

.dash-big-body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3
}

.dash-big-body p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .4rem
}

.btn-dash {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(37, 99, 235, .12);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, .25);
  transition: var(--transition);
  text-decoration: none
}

.btn-dash:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px)
}

.dash-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem
}

.dash-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  aspect-ratio: 16/9
}

.dash-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.dash-thumb:hover {
  border-color: rgba(37, 99, 235, .5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px)
}

.dash-thumb:hover img {
  transform: scale(1.06)
}

.dash-thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .7rem 1rem;
  background: linear-gradient(transparent, rgba(6, 10, 18, .9));
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center
}

@media(max-width:900px) {
  .dash-thumbnails {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .dash-thumbnails {
    grid-template-columns: 1fr
  }
}

/* SKILLS LOGO GRID */
.skills {
  background: var(--bg)
}

.skills-category {
  margin-bottom: 5rem
}

.skills-cat-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  color: var(--text);
  position: relative;
  padding-left: 1.6rem
}

.skills-cat-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient);
  border-radius: 2px
}

.skills-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.skill-logo-card {
  width: 14rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
  cursor: default;
  text-align: center
}

.skill-logo-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px)
}

.skill-logo-card img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: contain;
  transition: transform .3s ease
}

.skill-logo-card:hover img {
  transform: scale(1.12)
}

.skill-logo-card span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted)
}

@media(max-width:600px) {
  .skills-logo-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ACHIEVEMENTS */
.achievements {
  background: var(--bg2)
}

.achievements-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 6rem;
  justify-content: center;
}

.achievement-highlight-card {
  width: 28rem;
  max-width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 3rem 2.4rem;
  text-align: center;
  transition: var(--transition)
}

.achievement-highlight-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px)
}

.achievement-highlight-card i {
  font-size: 3.6rem;
  color: var(--primary);
  margin-bottom: 1.6rem;
  display: block
}

.achievement-highlight-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem
}

.achievement-highlight-card p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7
}

.achievement-highlight-card strong {
  color: var(--text)
}

.cert-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cert-card {
  width: 30rem;
  max-width: 100%;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  aspect-ratio: 4/3
}

.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.cert-card:hover {
  border-color: rgba(37, 99, 235, .5);
  box-shadow: var(--shadow-glow)
}

.cert-card:hover img {
  transform: scale(1.05)
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition)
}

.cert-card:hover .cert-overlay {
  opacity: 1
}

.cert-overlay i {
  font-size: 3rem;
  color: #fff
}

.cert-overlay span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff
}

.skill-text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1rem;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.05em;
  font-family: 'Space Grotesk', sans-serif
}

.dbt-logo {
  background: #FF694B;
  color: #fff
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition)
}

.modal.open {
  visibility: visible;
  opacity: 1
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px)
}

.modal-body {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border)
}

.modal-body img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  background: rgba(0, 0, 0, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  transition: var(--transition);
  z-index: 1
}

.modal-close:hover {
  background: var(--primary)
}

/* CONTACT */
.contact {
  background: var(--bg)
}

.contact-intro {
  text-align: center;
  font-size: 1.7rem;
  color: var(--text-muted);
  max-width: 56rem;
  margin: 0 auto 4rem
}

.contact-grid {
  max-width: 72rem;
  margin: 0 auto
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 2rem
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.4rem;
  transition: var(--transition)
}

.contact-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px)
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(37, 99, 235, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  flex-shrink: 0
}

.contact-label {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem
}

.contact-value {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600
}

/* FOOTER */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 3rem 8%
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700
}

.footer-copy {
  font-size: 1.35rem;
  color: var(--text-muted)
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 1.5px solid var(--card-border);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--text-muted);
  transition: var(--transition)
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, .1)
}

/* MOBILE NAV */
@media(max-width:900px) {
  #menu-icon {
    display: block
  }

  .navbar {
    position: fixed;
    top: 7rem;
    right: -100%;
    width: 28rem;
    background: rgba(6, 10, 18, .95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--card-border);
    flex-direction: column;
    padding: 2rem;
    gap: .8rem;
    transition: right .4s ease;
    min-height: 100vh
  }

  .navbar.open {
    right: 0
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 10rem;
    gap: 4rem
  }

  .hero-visual {
    display: none
  }

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

  .about-grid {
    grid-template-columns: 1fr
  }

  .project-card.featured {
    grid-column: span 1
  }

  .timeline-header {
    flex-direction: column;
    gap: .8rem
  }
}

@media(max-width:600px) {
  section {
    padding: 7rem 5%
  }

  .projects-grid {
    grid-template-columns: 1fr
  }

  .about-stats {
    grid-template-columns: 1fr
  }

  .footer-inner {
    flex-direction: column;
    text-align: center
  }
}