/* ===== Google Fonts Import ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

/* ===== Variables ===== */
:root {
  --primary-color: #0f172a;
  --secondary-color: #1e293b;
  --accent-color: #3b82f6;
  --accent-hover: #2563eb;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --glass-bg: rgba(30, 41, 59, 0.8);
  --glass-border: rgba(148, 163, 184, 0.1);
  --shadow-primary: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-secondary: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #00d4aa;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00b894;
}

/* ===== Scrollbar Styling ===== */
/*::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}*/

/* ===== Main Container ===== */
.main-container {
  display: flex;
  min-height: 100vh;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

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

/* ===== Aside Navigation ===== */
.aside {
  width: 280px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  transition: var(--transition);
}

.aside .logo {
  margin-bottom: 50px;
  text-align: center;
}

.aside .logo a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-secondary);
  transition: var(--transition);
}

.aside .logo a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.aside .logo a span {
  font-size: 32px;
  background: linear-gradient(45deg, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aside .nav {
  flex: 1;
  width: 100%;
}

.aside .nav li {
  list-style: none;
  margin-bottom: 8px;
}

.aside .nav li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.aside .nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: var(--transition);
  z-index: -1;
}

.aside .nav li a:hover::before,
.aside .nav li a.active::before {
  left: 0;
}

.aside .nav li a:hover,
.aside .nav li a.active {
  color: var(--text-primary);
  transform: translateX(5px);
}

.aside .nav li a i {
  margin-right: 15px;
  font-size: 18px;
  width: 20px;
}

.aside .nav-toggler {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.aside .nav-toggler span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  position: relative;
  transition: var(--transition);
}

.aside .nav-toggler span::before,
.aside .nav-toggler span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.aside .nav-toggler span::before {
  top: -6px;
}

.aside .nav-toggler span::after {
  top: 6px;
}

.aside .nav-toggler.open span {
  background: transparent;
}

.aside .nav-toggler.open span::before {
  transform: rotate(45deg);
  top: 0;
}

.aside .nav-toggler.open span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ===== Main Content ===== */
.main-content {
  margin-left: 280px;
  width: calc(100% - 280px);
  min-height: 100vh;
}

.section {
  padding: 100px 0;
  position: relative;
  min-height: 50vh; /* Ensure sections have minimum height */
  display: block; /* Ensure sections are displayed */
  opacity: 1; /* Make sure sections are visible */
  transform: translateY(0); /* Reset any transforms */
}

/* Keep the animate class for when animations trigger */
.section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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


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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4aa;
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: #00d4aa;
}

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

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Network Background */
.network-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#networkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: -1;
  pointer-events: none;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  margin: 0 auto; /* Center the content */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.highlight {
  color: #00d4aa;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  color: #b0b0b0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
  min-height: 2em;
}

.cursor {
  animation: blink 1s infinite;
  color: #00d4aa;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
  border: 2px solid #00d4aa;
  color: #00d4aa;
  background: transparent;
}

.btn-secondary:hover {
  background: #00d4aa;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #00d4aa;
  color: #00d4aa;
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInUp 1s ease 1.3s forwards;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: #00d4aa;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #00d4aa;
  border-bottom: 2px solid #00d4aa;
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

/* Section Styles */

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  border-radius: 2px;
}

/* ===== Home Section ===== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.home::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

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

.home .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.home .home-info {
  flex: 1;
  min-width: 300px;
  z-index: 2;
}

.home .home-info h3.hello {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 10px;
  opacity: 0;
  animation: slideInLeft 1s ease 0.2s forwards;
}

.home .home-info h3.hello .name {
  color: var(--accent-color);
  font-weight: 700;
}

.home .home-info h3.my-profession {
  font-size: 48px;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideInLeft 1s ease 0.4s forwards;
}

.home .home-info .typing {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home .home-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: slideInLeft 1s ease 0.6s forwards;
}

.home .home-img {
  flex: 0 0 400px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home .home-img img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: var(--shadow-primary);
  opacity: 0;
  animation: zoomIn 1s ease 0.8s forwards;
  transition: var(--transition);
}

.home .home-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.4);
}

/* ===== Animations ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Common Styles ===== */
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  cursor: pointer;
}

/* ===== About Section ===== */
.about {
  background: var(--secondary-color);
}

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

.about-text p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: #00d4aa;
  font-weight: 700;
}

.stat p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.about-image {
  text-align: center;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid #00d4aa;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.4);
  border-color: #00b894;
}

.profile-img-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid #00d4aa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.profile-img-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
}

.profile-img-placeholder i {
  font-size: 4rem;
  color: #00d4aa;
  margin-bottom: 1rem;
}

.profile-img-placeholder p {
  color: #b0b0b0;
  font-size: 1rem;
}

.about .about-content .about-text {
  text-align: center;
  margin-bottom: 50px;
}

.about .about-content .about-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about .about-content .about-text p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about .about-content .info-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.about .about-content .personal-info .info-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 10px;
}

.about .about-content .personal-info .info-item p {
  font-weight: 600;
  color: var(--text-primary);
}

.about .about-content .personal-info .info-item span {
  color: var(--text-secondary);
}

/* ===== Timeline Styles ===== */
.timeline-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.timeline-section h3.title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-secondary);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 4px solid var(--primary-color);
}

.timeline-date {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.timeline-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Portfolio Section ===== */
.portfolio {
  background: var(--primary-color);
}

.portfolio .portfolio-heading {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio .portfolio-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-secondary);
}

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

.portfolio .portfolio-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: hover;
}

.portfolio .portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.portfolio .portfolio-item .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio .portfolio-item .portfolio-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-secondary);
  color: var(--text-primary);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.portfolio .portfolio-item:hover .portfolio-img a {
  opacity: 1;
}

/* ===== My Creations Section ===== */
.creation {
  background: var(--secondary-color);
}

.creation .video-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.creation .creation-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.creation .creation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.creation .creation-item:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0 auto;
}

.creation .creation-item iframe {
  width: 100%;
  height: 315px;
  border: none;
}

/* ===== Certificates Section ===== */
.certificates {
  background: var(--primary-color);
}

.certificates .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.certificates .portfolio-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.certificates .portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.certificates .portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.certificates .portfolio-item p {
  padding: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  background: var(--secondary-color);
}

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

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00d4aa;
}

.contact-info p {
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

.contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 170, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4aa;
  font-size: 1.2rem;
}

.contact-item h4 {
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: #b0b0b0;
  margin: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4aa;
  box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    backdrop-filter: blur(10px);
  }

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

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Scroll Animations */
.fade-in {
  /* Remove default hidden state */
  /* opacity: 0;
  transform: translateY(30px); */
  transition: all 0.6s ease;
}

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

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

.skill-category {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.3);
}

.skill-category h3 {
  font-size: 1.3rem;
  color: #00d4aa;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.skill-tag {
  background: linear-gradient(45deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 170, 0.3);
  transition: all 0.3s ease;
  cursor: default;
}

.skill-tag:hover {
  background: linear-gradient(45deg, rgba(0, 212, 170, 0.3), rgba(0, 184, 148, 0.3));
  border-color: #00d4aa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.2);
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skill-category {
    padding: 1.5rem;
  }

  .skills-list {
    gap: 0.6rem;
  }

  .skill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

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

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.project-content p {
  color: #b0b0b0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(0, 212, 170, 0.2);
  color: #00d4aa;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-link {
  color: #00d4aa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: #00b894;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
}
