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

:root {
  /* Colors */
  --bg-primary: #0a0d12;
  --bg-secondary: #121620;
  --bg-tertiary: #19202e;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f3d06d;
  --accent-gold-muted: rgba(212, 175, 55, 0.25);
  --accent-gold-glow: rgba(212, 175, 55, 0.15);
  --text-primary: #f7fafc;
  --text-secondary: #cbd5e0;
  --text-muted: #718096;
  --border-glass: rgba(212, 175, 55, 0.1);
  --border-glass-focus: rgba(212, 175, 55, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Card Properties */
  --card-radius: 16px;
  --glass-bg: rgba(18, 22, 32, 0.65);
  --glass-blur: blur(12px);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c49a2a 100%);
  color: #0a0d12;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass-focus);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Background elements */
.bg-glow-1, .bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 13, 18, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -100px;
  right: -100px;
}

.bg-glow-2 {
  bottom: 20%;
  left: -200px;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 0.85rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

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

.logo-dot {
  color: var(--accent-gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-normal);
}

nav a:hover, nav a.active {
  color: var(--accent-gold);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
}

/* Hero Avatar with Pulse & Network Effect */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(212, 175, 55, 0.1) 70%);
  box-shadow: var(--shadow-gold);
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-primary);
}

/* Glowing Aura */
.avatar-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold-muted);
  animation: pulse-ring 4s infinite linear;
}

.avatar-glow-2 {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border-radius: 50%;
  border: 1px dashed var(--border-glass);
  animation: rotate-ring 25s infinite linear;
}

.hero-location {
  position: absolute;
  bottom: -30px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Quick Contact Sidebar badge */
.quick-sidebar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 100;
  background: rgba(18, 22, 32, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.25rem 0.75rem;
  border-radius: 30px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
}

.quick-sidebar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.quick-sidebar a:hover {
  background: var(--accent-gold);
  color: #0a0d12;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* About Section */
.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 3.5rem;
  display: block;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.highlight-card {
  padding: 2rem;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 2rem;
}

.education-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.education-card {
  padding: 1.75rem;
  position: relative;
}

.edu-year {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.education-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.edu-sub {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.edu-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.skills-category {
  padding: 2rem;
}

.skills-category h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass-focus);
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skills-category h3 i {
  color: var(--accent-gold);
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
}

.skill-name {
  color: var(--text-primary);
}

.skill-level {
  color: var(--accent-gold);
}

.skill-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  border-radius: 3px;
  width: 0; /* Animated with JS or CSS */
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.tag-item {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--text-primary);
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  transition: var(--transition-fast);
}

.tag-item:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--accent-gold);
}

/* Internships Section */
.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .internship-grid {
    grid-template-columns: 1fr;
  }
}

.intern-card {
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.intern-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.intern-title h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.intern-company {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
}

.intern-date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  background: var(--bg-tertiary);
  padding: 0.3rem 0.75rem;
  border-radius: 12px;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.intern-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.intern-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
}

.intern-bullets li::before {
  content: '✦';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  top: 0;
}

.intern-location {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Portfolio Section */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  border: 1px solid var(--border-glass-focus);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 3rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.portfolio-img-container {
  width: 100%;
  height: 250px;
  position: relative;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.portfolio-img-container svg {
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-img-container svg {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--accent-gold);
}

.portfolio-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.portfolio-info p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.portfolio-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.portfolio-links a:hover {
  color: var(--accent-gold);
}

/* Certifications Section */
.certifications-section {
  position: relative;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cert-card {
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
}

.cert-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--border-glass);
}

.cert-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.cert-issuer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  padding: 2.5rem;
}

.contact-info-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  border: 1px solid var(--border-glass);
  font-size: 1.1rem;
}

.contact-item-text span {
  display: block;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.social-handles-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-handles {
  display: flex;
  gap: 1rem;
}

.social-handles a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--border-glass);
}

.social-handles a:hover {
  background: var(--accent-gold);
  color: #0a0d12;
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.contact-form-panel {
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background: rgba(25, 32, 46, 0.8);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #121620;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px var(--accent-gold-glow);
  padding: 1rem 2rem;
  border-radius: 30px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  font-weight: 500;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #080a0f;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
}

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

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid var(--border-glass);
}

.footer-socials a:hover {
  background: var(--accent-gold);
  color: #0a0d12;
}

.footer-divider {
  height: 1px;
  background: var(--border-glass);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
    box-shadow: 0 0 20px var(--accent-gold-glow);
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

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

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.25rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .quick-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0d1117;
    border-left: 1px solid var(--border-glass-focus);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
