/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #61cdff;
  color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #021a52;
  padding: 15px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar li {
  display: inline;
  margin: 0 20px;
}
.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1em;
}
.navbar a.active, .navbar a:hover {
  border-bottom: 2px solid #ff4081;
}


/* Welcome Section */
.welcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 100px 50px;
  background: #282828;
  text-align: center;
}
.welcome .intro {
  max-width: 600px;
  color:#759acd;
}
.welcome h1 {
  font-size: 2.5em;
}

.welcome .highlight {
  color: #e1799f;
}
.welcome a {
  color: #e1799f;
  text-decoration: underline;
  font-weight: 400;
}

/* 
.profile-pic img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 5px solid white;
} */

/* Skills Section */
#skills {
  text-align: center;
  padding: 50px 20px;
  background: #e1799f;
}
#skills h2 {
  font-size: 2em;
  margin-bottom: 30px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}
.skills-grid div {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
}
.skills-grid i {
  font-size: 2em;
  margin-bottom: 10px;
}
