* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #090909, #000000, #111111);
  color: white;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  filter: blur(150px);
  top: -200px;
  left: -100px;
  z-index: -1;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: #b3b3b3;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.hire-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hire-btn:hover {
  transform: scale(1.05);
}

.hero {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-subtitle {
  color: #999;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 80px;
  line-height: 0.95;
  margin-bottom: 30px;
  font-weight: 900;
}

.gradient-text {
  display: block;
  background: linear-gradient(to right, white, #666);
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 760px;
  margin: auto;
  color: #aaa;
  font-size: 20px;
  line-height: 1.8;
}

.projects-grid {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.project-box {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 120px;
  border-radius: 25px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);

  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

.project-box:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}