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

:root {
  --primary: #6c5ce7;
  --secondary: #fd79a8;
  --accent-1: #00cec9;
  --accent-2: #fdcb6e;
  --accent-3: #e17055;
  --dark: #0a0a1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --light: #ffffff;
  --gray: #b2b2c2;
  --gradient-1: linear-gradient(135deg, #6c5ce7, #fd79a8);
  --gradient-2: linear-gradient(135deg, #00cec9, #6c5ce7);
  --gradient-3: linear-gradient(135deg, #fdcb6e, #e17055);
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 60%, #0a0a1a 100%);
  --shadow-1: 0 10px 40px rgba(108, 92, 231, 0.3);
  --shadow-2: 0 10px 40px rgba(253, 121, 168, 0.3);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
::selection { background: var(--primary); color: white; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gradient-1); border-radius: 10px; }

.cursor {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-follower {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s ease, all 0.3s ease;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dot {
  color: var(--accent-1);
  -webkit-text-fill-color: var(--accent-1);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--light);
  border-radius: 3px;
  transition: var(--transition);
}

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 100px 30px 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(253, 121, 168, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(0, 206, 201, 0.08) 0%, transparent 50%);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.greeting {
  font-size: 18px;
  color: var(--accent-1);
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.glitch {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.typed-container {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 40px;
  color: var(--accent-1);
}

.cursor-blink {
  animation: blink 0.7s infinite;
  color: var(--secondary);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-desc {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border: 2px solid var(--primary);
  color: var(--light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  font-size: 18px;
}

.social-icon:hover {
  background: var(--gradient-1);
  border-color: transparent;
  transform: translateY(-5px);
}

.hero-image {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: spin 10s linear infinite;
  border-top: 2px solid transparent;
}

.img-ring-2 {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 2px dashed var(--secondary);
  animation: spin 15s linear infinite reverse;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.avatar-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: white;
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.avatar-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
  animation: spin 6s linear infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--gray);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  animation: wheel 1.5s infinite;
}

@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 120px 30px 60px;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(253, 121, 168, 0.1) 0%, transparent 50%);
}

.banner-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: float 6s ease-in-out infinite;
}

.banner-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -80px;
  left: -80px;
}

.banner-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: -60px;
  right: -60px;
  animation-delay: 2s;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(108, 92, 231, 0.2);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(108, 92, 231, 0.3);
  backdrop-filter: blur(10px);
}

.banner-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
}

.page-banner + section {
  padding-top: 60px;
}

/* ===== SECTIONS COMMON ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
}

.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.divider-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  font-size: 16px;
}

/* ===== ABOUT ===== */
#about {
  background: var(--dark-2);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 0 0 350px;
}

.about-img-box {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: 20px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 22px;
  z-index: -1;
  animation: spin 6s linear infinite;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--primary);
  background: var(--dark-2);
  border-radius: 18px;
}

.exp-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--gradient-2);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-2);
}

.exp-number {
  font-size: 28px;
  font-weight: 800;
  display: block;
}

.exp-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text { flex: 1; }

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(108, 92, 231, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(108, 92, 231, 0.15);
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  font-size: 16px;
}

.stat-label {
  font-weight: 600;
  font-size: 14px;
}

/* ===== EDUCATION ===== */
#education {
  background: var(--dark);
  overflow: hidden;
}

.edu-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.edu-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent-1));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--dark);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
  z-index: 2;
}

.timeline-item.left::before { right: -8px; }
.timeline-item.right::before { left: -8px; }

.timeline-content {
  background: var(--dark-2);
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
}

.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, var(--primary), transparent, var(--secondary));
  animation: spin 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-glow:hover::before {
  opacity: 0.15;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 15px;
}

.timeline-item.left .timeline-icon {
  margin-left: auto;
}

.timeline-date {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 206, 201, 0.15);
  color: var(--accent-1);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.timeline-content h4 {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== SKILLS ===== */
#skills {
  background: var(--dark-2);
}

.skills-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.skill-category {
  background: var(--dark-3);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: var(--transition);
}

.skill-category:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.1);
}

.skill-category h3 {
  font-size: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-category h3 i {
  color: var(--primary);
  font-size: 24px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.skill-percent {
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== CONTACT ===== */
#contact {
  background: var(--dark);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--dark-2);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.15);
}

.contact-card i {
  font-size: 30px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray);
  font-size: 13px;
}

.contact-form {
  background: var(--dark-2);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(108, 92, 231, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  transition: var(--transition);
}

.form-group textarea + i {
  top: 25px;
  transform: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  color: var(--light);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}

.form-group input:focus + i,
.form-group textarea:focus + i {
  color: var(--primary);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.footer-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
}

.copyright {
  font-size: 12px !important;
  color: var(--gray) !important;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content { flex-direction: column-reverse; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-btns { justify-content: center; }
  .social-icons { justify-content: center; }
  .about-content { flex-direction: column; text-align: center; }
  .about-stats { justify-content: center; }
  .about-text h3 { text-align: center; }
  .about-img-box { margin: 0 auto; }
  .exp-badge { right: 20px; }
  .timeline-item.left,
  .timeline-item.right { width: 100%; left: 0; text-align: left; padding: 20px 20px 20px 50px; }
  .edu-timeline::before { left: 20px; }
  .timeline-item.left::before,
  .timeline-item.right::before { left: 12px; }
  .timeline-item.left .timeline-icon { margin-left: 0; }
  .skills-content { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: 0.4s;
  }
  .nav-links.active { left: 0; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-image { flex: 0 0 auto; }
  .img-wrapper { width: 240px; height: 240px; }
  .avatar-placeholder { width: 160px; height: 160px; font-size: 60px; }
  .about-image { flex: 0 0 auto; }
  .about-img-box { width: 260px; height: 300px; }
  .contact-info { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }
}
