/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #e5e5e5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 999;
  background: rgba(15, 15, 15, 0.9);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
  width: 90%; max-width: 1100px;
  margin: auto; display: flex; justify-content: space-between; align-items: center;
}
.logo {
  color: #00f7a0; font-family: 'Orbitron', sans-serif;
}
.logo span { color: #fff; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a {
  text-decoration: none; color: #e5e5e5;
  transition: color 0.3s;
}
.nav-links a:hover { color: #00f7a0; }

/* Hero */
.hero {
  display: flex; justify-content: center; align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}
.hero h1 { font-size: 46px; margin-bottom: 10px; }
.hero h1 span { color: #00f7a0; }
.hero h2 { font-size: 20px; margin-bottom: 15px; color: #ccc; }
.hero p { max-width: 600px; margin: 0 auto 25px; color: #aaa; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }

.btn {
  padding: 12px 24px; background: #00f7a0; color: #0d0d0d;
  border-radius: 28px; font-weight: 600; text-decoration: none;
  transition: 0.3s;
}
.btn:hover { background: #00e699; }

.btn-outline {
  padding: 12px 24px; border: 2px solid #00f7a0;
  border-radius: 28px; font-weight: 600;
  color: #00f7a0; text-decoration: none;
  transition: 0.3s;
}
.btn-outline:hover { background: #00f7a0; color: #0d0d0d; }

/* Sections */
section { 
  padding: 100px 0; 
  margin: 40px auto; 
  width: 90%; 
  max-width: 1100px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
section h2 {
  font-size: 26px; margin-bottom: 30px;
  border-left: 5px solid #00f7a0; padding-left: 12px;
  color: #00f7a0;
}

/* Glass Cards */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,247,160,0.2);
}
.card h3 { color: #00f7a0; margin-bottom: 10px; }

/* Skills */
.skills-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.skill {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 16px; border-radius: 10px;
  text-align: center; border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s;
}
.skill:hover { transform: scale(1.08); }
.skill i { display: block; font-size: 28px; margin-bottom: 6px; color: #00f7a0; }

/* Footer */
footer {
  background: #111; text-align: center;
  padding: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
}
footer a { color: #00f7a0; text-decoration: none; }
footer a:hover { text-decoration: underline; }
