
 * {
  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);
} 

nav a {
  position: relative;
  margin-left: 25px;
  text-decoration: none;
    color:#cfd8dc;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #6cbcff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ffffff; /* text white */
}

nav a:hover::after {
  width: 100%;
}

.logo {
  font-size: 20px;
  color: #6cbcff;
  font-weight: bold;
}


.skills {
  text-align: center;
  margin-top: 60px;
}

.skills h2 {
  font-size: 32px;
  color: #6cbcff;
  margin-bottom: 40px;
}

.skill-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.skill-box span {
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0c1f3d, #071226);
  border: 1px solid rgba(108, 188, 255, 0.3);
  color: #e6f2ff;
  box-shadow: 0 0 15px rgba(108, 188, 255, 0.15);
  transition: 0.3s;
}

.skill-box span:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(108, 188, 255, 0.4);
}

/* Coding Journey */
.journey {
  margin-top: 80px;
  text-align: center;
}

.journey h2 {
  font-size: 30px;
  color: #6cbcff;
  margin-bottom: 40px;
}

.journey-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 260px;
  padding: 30px;
  border-radius: 12px;
  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);
}

.card h3 {
  font-size: 26px;
  color: #8fd3ff;
  margin-bottom: 10px;
}

.card p {
  color: #cfe7ff;
  font-size: 14px;
}

