* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0a1630, #000);
  color: #bcdcff;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(0, 150, 255, 0.3);
}

.logo {
  font-size: 20px;
  color: #6cbcff;
  font-weight: bold;
}

nav a {
  position: relative;
  margin-left: 25px;
  text-decoration: none;
  color: #dbefff;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #6cbcff;
  box-shadow: 0 0 8px #6cbcff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::after {
  width: 100%;
}

.projects {
  margin-top: 90px;
  text-align: center;
}

.projects h2 {
  font-size: 32px;
  color: #6cbcff;
  margin-bottom: 50px;
}

.project-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.project-card {
  width: 320px;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  background: linear-gradient(145deg, #0b1b36, #050c1a);
  border: 1px solid rgba(108, 188, 255, 0.25);
  box-shadow: 0 0 25px rgba(108, 188, 255, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 40px rgba(108, 188, 255, 0.45);
}

.project-card h3 {
  color: #8fd3ff;
  font-size: 18px;
  margin-bottom: 15px;
}

.project-card p {
  color: #cfe7ff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-card a {
  text-decoration: none;
  color: #6cbcff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.project-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #6cbcff;
  box-shadow: 0 0 8px #6cbcff;
  transition: width 0.3s ease;
}

.project-card a:hover::after {
  width: 100%;
}
