/* Modern Portfolio CSS with Dark Theme & Glassmorphism */

:root {
  --primary: #4A90E2;
  --secondary: #3A7BC8;
  --accent: #4A90E2;
  --light-bg: #FFFFFF;
  --off-white: #F4F4F4;
  --card-bg: #FFFFFF;
  --text-primary: #2E2E2E;
  --text-secondary: #666666;
  --gradient: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  --shadow: rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px var(--shadow);
}

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

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: 0.3s;
}

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-greeting {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-name {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-title {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: 0.3s;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.25);
}

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

.floating-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.code-snippet {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.code-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }

.code-snippet code {
  color: var(--text-primary);
  line-height: 1.8;
}

.keyword { color: #9B59B6; }
.class { color: #4A90E2; }
.string { color: #27AE60; }
.function { color: #F39C12; }
.comment { color: #95A5A6; }

.scroll-down {
  text-align: center;
  margin-top: 3rem;
}

.scroll-down a {
  color: var(--primary);
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.info-box {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px var(--shadow);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 40px;
}

.info-item label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
}

.info-item p {
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Skills Section */
.skills {
  background: var(--light-bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.skill-category {
  background: var(--off-white);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item {
  width: 100%;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.skill-bar {
  width: 100%;
  height: 10px;
  background: rgba(74, 144, 226, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--gradient);
  border-radius: 10px;
  transition: width 1.5s ease-in-out;
  width: 0;
}

.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge {
  padding: 0.6rem 1.2rem;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
}

.badge:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}

.badge.cloud {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  color: #ff9800;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  box-shadow: 0 2px 10px var(--shadow);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
  border-color: var(--primary);
}

.project-image {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-overlay {
  color: white;
  opacity: 0.8;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.project-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.4rem 1rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary);
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

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

/* Education Section */
.education {
  background: var(--off-white);
}

.education-grid {
  display: grid;
  gap: 2rem;
}

.education-item {
  display: flex;
  gap: 2rem;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px var(--shadow);
}

.edu-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.edu-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.edu-content h4 {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.edu-year {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.certifications {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px var(--shadow);
}

.certifications h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cert-item i {
  color: var(--primary);
  font-size: 1.5rem;
}

.cert-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* GitHub Section */
.github-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.stat-card img {
  width: 100%;
  border-radius: 10px;
}

.github-link {
  text-align: center;
}

/* GitHub Section - Professional Growth & Technical Expertise */
.github {
  background: var(--off-white);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.growth-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.growth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
  border-color: var(--primary);
}

.growth-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--off-white);
}

.growth-header i {
  font-size: 2.5rem;
  color: var(--primary);
  background: rgba(74, 144, 226, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.growth-header h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.growth-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

/* Technical Stack Styles */
.tech-category {
  margin-bottom: 0.5rem;
}

.tech-category h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tech-badge {
  padding: 0.5rem 1rem;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 25px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-badge:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.cloud-badge {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  color: #ff9800;
}

.cloud-badge:hover {
  background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  color: white;
}

/* Currently Learning Styles */
.learning-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  background: var(--off-white);
  transition: all 0.3s ease;
}

.learning-item:hover {
  background: rgba(74, 144, 226, 0.05);
  transform: translateX(5px);
}

.learning-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.learning-text h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.learning-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Career Objectives Styles */
.objective-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 12px;
  background: var(--off-white);
  transition: all 0.3s ease;
  position: relative;
}

.objective-item:hover {
  background: rgba(74, 144, 226, 0.05);
  transform: translateX(5px);
}

.objective-marker {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.objective-marker::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  position: absolute;
}

.short-term {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.mid-term {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.long-term {
  background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

.continuous {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.objective-text h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.objective-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Commitment Section */
.growth-commitment {
  text-align: center;
  margin-top: 1rem;
  padding: 2.5rem 3rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.growth-commitment p {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.8;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

/* Responsive for Growth Section */
@media (max-width: 1024px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .growth-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
  
  .growth-card:last-child {
    grid-column: auto;
  }
  
  .growth-card {
    padding: 2rem;
  }
  
  .growth-commitment {
    padding: 2rem;
  }
  
  .growth-commitment p {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact {
  background: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.contact-text p {
  color: var(--text-secondary);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--off-white);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Footer */
.footer {
  background: var(--off-white);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-5px);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

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

  .skills-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
