/* ============================================================
   Aditya Gond Portfolio — style.css
   Dark Designer Portfolio (matches Webflow Community template)
   ============================================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:       #0B0C10;
  --bg-card:       #13141A;
  --bg-card2:      #1A1B23;
  --accent-purple: #7B55EC;
  --accent-cyan:   #63B8E7;
  --accent-teal:   #7DE0EA;
  --accent-blue:   #583FBC;
  --text-white:    #FFFFFF;
  --text-light:    #D3D5D6;
  --text-muted:    #8A8D9A;
  --border:        rgba(255,255,255,0.08);
  --radius-lg:     20px;
  --radius-md:     12px;
  --radius-sm:     8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  padding: 12px 0;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);

  transition: padding 0.3s;
}

.navbar.scrolled {
  padding: 8px 0;
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 85px; /* 50px, 70px, 80px try kar sakte ho */
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-purple);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hire Me Button */
.nav-cta {
  background: var(--accent-purple);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #6944d4;
  transform: translateY(-1px);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-logo {
  height: 50px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: auto;
  transform: scale(1.4) translateY(5px);
  transform-origin: center center;
}


.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(123,85,236,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(99,184,231,0.10) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('../assets/Lines.svg');
  background-size: cover;
  background-position: center;
}

.hero-pattern {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-squers {
  position: absolute;
  right: 50px;
  top: 120px;
  width: 300px;
  opacity: 0.8;
  pointer-events: none;
  animation: floatShapes 6s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Left — Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,85,236,0.15);
  border: 1px solid rgba(123,85,236,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-purple);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title .line-accent {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-purple);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #6944d4; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(123,85,236,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--accent-purple); color: var(--accent-purple); transform: translateY(-2px); }

/* Right — Profile Card */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.photo-card {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(123,85,236,0.1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,12,16,0.6) 0%, transparent 50%);
  z-index: 1;
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(19,20,26,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}
.photo-badge strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.photo-badge span { font-size: 12px; color: var(--text-muted); }

.photo-stat {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.photo-stat .stat-num { font-size: 22px; font-weight: 800; color: var(--accent-purple); }
.photo-stat .stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.photo-stat2 {
  position: absolute;
  top: 130px;
  left: -30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.photo-stat2 .stat-num { font-size: 20px; font-weight: 800; color: var(--accent-cyan); }
.photo-stat2 .stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Floating ellipses */
.ellipse-float {
  position: absolute;
  pointer-events: none;
}
.el-1 { width: 80px; top: -20px; right: 60px; animation: floatShapes 5s ease-in-out infinite; }
.el-2 { width: 60px; bottom: 80px; right: -10px; animation: floatShapes 7s ease-in-out infinite 1s; }
.el-3 { width: 50px; bottom: -10px; left: 40px; animation: floatShapes 6s ease-in-out infinite 0.5s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stats-divider {
  width: 1px;
  background: var(--border);
  height: 60px;
  margin: auto;
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION COMMON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding: 100px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: grayscale(15%);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(123,85,236,0.2);
  border-radius: 28px;
  pointer-events: none;
}

.about-bg-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, rgba(123,85,236,0.12), rgba(99,184,231,0.08));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-info { }
.about-info .section-desc { max-width: 100%; margin-bottom: 32px; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.highlight-card:hover { border-color: rgba(123,85,236,0.4); transform: translateY(-3px); }
.highlight-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.highlight-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.highlight-card p { font-size: 12px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SKILLS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.skills-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.skills-bg-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  opacity: 0.12;
  pointer-events: none;
}

.skills-header {
  text-align: center;
  margin-bottom: 64px;
}
.skills-header .section-desc { margin: 0 auto; }

.skills-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.skill-cat-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.skill-cat-card:hover { border-color: rgba(123,85,236,0.4); transform: translateY(-4px); }

.skill-cat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.icon-purple { background: rgba(123,85,236,0.15); }
.icon-cyan   { background: rgba(99,184,231,0.15); }
.icon-teal   { background: rgba(125,224,234,0.15); }

.skill-cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* Skill bars */
.skill-bars { margin-top: 40px; }
.skill-bar-item { margin-bottom: 20px; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.skill-bar-header span:last-child { color: var(--text-muted); }
.bar-track {
  height: 6px;
  background: var(--bg-card2);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXPERIENCE SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan));
}
.exp-card:hover { border-color: rgba(123,85,236,0.35); transform: translateY(-4px); }

.exp-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.exp-role { font-size: 16px; font-weight: 700; }
.exp-date {
  background: rgba(123,85,236,0.12);
  border: 1px solid rgba(123,85,236,0.2);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--accent-purple);
  font-weight: 600;
  white-space: nowrap;
}
.exp-org { font-size: 14px; color: var(--accent-cyan); font-weight: 600; margin-bottom: 12px; }
.exp-loc { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.exp-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EDUCATION SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.edu-section { background: var(--bg-card); }

.edu-timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 30px;
}
.edu-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan), transparent);
}

.edu-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}
.edu-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px; height: 14px;
  background: var(--accent-purple);
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 2px rgba(123,85,236,0.3);
}

.edu-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color 0.2s;
}
.edu-card:hover { border-color: rgba(123,85,236,0.3); }

.edu-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; }
.edu-degree { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.edu-field { font-size: 13px; color: var(--accent-cyan); font-weight: 500; }
.edu-school { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CERTIFICATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Projects Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

/* Project Card */
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.cert-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 85, 236, 0.05),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none; /* IMPORTANT */
}

.cert-card:hover {
  border-color: rgba(123, 85, 236, 0.4);
  transform: translateY(-4px);
}

.cert-card:hover::after {
  opacity: 1;
}

.cert-icon,
.project-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.cert-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cert-issuer {
  font-size: 12px;
  color: var(--accent-purple);
  font-weight: 600;
}

/* Premium Project Button */
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 24px;
  margin-top: 12px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  text-decoration: none;
  font-weight: 600;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  position: relative;
  z-index: 10; /* IMPORTANT */

  transition: all 0.3s ease;
}

.project-btn:hover {
  background: #c82222;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,34,34,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Project Buttons
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  text-decoration: none;
  font-weight: 600;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  transition: all 0.3s ease;
}

.project-btn:hover {
  background: #c82222;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,34,34,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(123,85,236,0.12) 0%, transparent 70%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-label,
.contact-inner .section-title,
.contact-inner .section-desc { text-align: center; margin-left: auto; margin-right: auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 48px;
}

.contact-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover { border-color: rgba(123,85,236,0.4); transform: translateY(-4px); }
.contact-card .c-icon { font-size: 28px; margin-bottom: 12px; }
.contact-card h4 { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.contact-card a, .contact-card p { font-size: 14px; font-weight: 600; color: var(--text-white); word-break: break-all; }
.contact-card a:hover { color: var(--accent-purple); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.social-link {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-link:hover { border-color: var(--accent-purple); background: rgba(123,85,236,0.1); transform: translateY(-2px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p { font-size: 13px; color: var(--text-muted); }
footer span { color: var(--accent-purple); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

@keyframes floatShapes {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-photo-wrap { order: -1; }
  .photo-card      { width: 300px; height: 380px; }
  .photo-stat      { right: -10px; }
  .hero-actions    { justify-content: center; }
  .hero-tags       { justify-content: center; }
  .hero-subtitle   { margin: 0 auto 36px; }
  .about-grid      { grid-template-columns: 1fr; }
  .skills-categories { grid-template-columns: 1fr 1fr; }
  .cert-grid       { grid-template-columns: 1fr 1fr; }
  .contact-cards   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(11,12,16,0.98);
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .stats-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .exp-grid         { grid-template-columns: 1fr; }
  .skills-categories { grid-template-columns: 1fr; }
  .cert-grid        { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .section          { padding: 72px 0; }
}



#loader-wrapper {
  position: fixed;
  inset: 0;
  background: #0b0c10;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 1.5s ease;
}

.loader {
  width: fit-content;
  font-size: 42px;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: transparent;

  -webkit-text-stroke: 1px #7b55ec;

  background:
    radial-gradient(
      1.13em at 50% 1.6em,
      #55dbea 99%,
      transparent 101%
    ) calc(50% - 1.6em) 0 / 3.2em 100% text,

    radial-gradient(
      1.13em at 50% -1.5em,
      transparent 99%,
      #ee2258 101%
    ) 50% .8em / 3.2em 100% repeat-x text;

  animation: loaderMove 8s linear infinite;
}

.loader::before {
  content: "Loading";
}

@keyframes loaderMove {
  to {
    background-position:
      calc(50% + 1.6em) 0,
      calc(50% + 3.2em) .8em;
  }
}