body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0f172a, #000);
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  color: white;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-right: 80px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: cyan;
}
/* Logo in Navbar */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* Tool Icons inside cards */
.tool-icon {
  width: 35px;
  height: 35px;
}

/* Make skill cards align icons + text */
.card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
}

/* Make project cards clickable nicely */
.project-card {
  cursor: pointer;
}



.hero {
  text-align: center;
  padding: 170px 20px;
}

.title {
  font-size: 55px;
  background: linear-gradient(to right, cyan, magenta);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
  font-size: 18px;
  margin-top: 15px;
}

.buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px;
  display: inline-block;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(to right, cyan, magenta);
  color: black;
}

.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px cyan;
}

.secondary {
  border: 2px solid cyan;
  color: cyan;
}

.secondary:hover {
  background: cyan;
  color: black;
}

.skills, .projects, .contact {
  padding: 80px 50px;
  text-align: center;
}

.skill-grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card, .project-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover, .project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px magenta;
}
.card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
}

.contact a {
  color: cyan;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 30px;
}
.card, .project-card {
  text-decoration: none;
  color: white;
  display: block;
}

