* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
  scroll-behavior: smooth;
}

/* BODY */
body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.logo {
  color: #38bdf8;
  font-weight: bold;
}

/* NAV */
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

/* HOME */
.home {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-content span {
  color: #38bdf8;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #38bdf8;
  margin-bottom: 10px;
}

/* BUTTON */
button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #38bdf8;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  background: white;
}

/* SKILLS */
.skills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.skill {
  background: #1e40af;
  padding: 10px;
  border-radius: 6px;
}

/* PROJECTS */
.projects {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: #0f172a;
  border: 1px solid #38bdf8;
  padding: 20px;
  width: 220px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* CONTACT */
.contact-box {
  background: #111827;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #38bdf8;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  margin-top: 40px;
}
