* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a14;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  background: rgba(10,10,20,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
}

.navbar a:hover {
  color: #00f7ff;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(90deg, #00f7ff, #9f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats span {
  margin: 0 10px;
  color: #aaa;
}

.hero-buttons {
  margin-top: 20px;
}

.links {
  margin-top: 15px;
}

.links a {
  margin: 0 10px;
  color: #aaa;
  font-size: 14px;
}

/* BUTTONS */
.btn, .btn-outline {
  padding: 10px 20px;
  border-radius: 20px;
  margin: 5px;
  display: inline-block;
}

.btn {
  background: linear-gradient(90deg, #00f7ff, #9f00ff);
}

.btn-outline {
  border: 1px solid #00f7ff;
}

.btn:hover {
  box-shadow: 0 0 10px #00f7ff;
}

/* SECTIONS */
.section {
  padding: 100px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-text {
  max-width: 700px;
  margin: auto;
  color: #bbb;
}

/* GRID */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}

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

/* PROJECT */
.project-card {
  margin: 30px auto;
  width: 60%;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  text-align: left;
  transition: 0.3s;
}


.project-card:hover {
  border: 1px solid #00f7ff;
  transform: translateY(-5px);
}

.project-card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.project-card li {
  margin: 5px 0;
}
/* TIMELINE */
.timeline {
  max-width: 700px;
  margin: auto;
  position: relative;
  text-align: left;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 2px;
  height: 100%;
  background: #00f7ff;
}

.timeline-item {
  margin: 30px 0;
  padding-left: 40px;
}

.dot {
  width: 15px;
  height: 15px;
  background: #00f7ff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
}

/* CONTACT */
.contact-box {
  margin: 20px 0;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  color: #aaa;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* BACKGROUND GLOW */
.bg-blur {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,247,255,0.15), transparent);
  top: -100px;
  left: -100px;
  z-index: -1;
  filter: blur(100px);
}
.design-card {
  max-width: 700px;
  margin: 30px auto;
  padding: 25px;
  text-align: left;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.design-card:hover {
  border: 1px solid #00f7ff;
  transform: translateY(-5px);
}

.design-card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.design-card li {
  margin: 5px 0;
}
/* HEADINGS */
h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* BETTER TEXT */
p {
  line-height: 1.6;
}

/* LINK HOVER */
a {
  transition: 0.3s;
}