*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #111;
    scroll-behavior: smooth;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #111;
    position: sticky;
    top:0;
    z-index: 1000;
}
#logo {
  cursor: pointer;
}
nav h1{
    color: white;
    font-size: 22px;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 20px;
}
nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
}
nav a:hover{
    color:#60a5fa;
}
section{
    padding: 80px 40px;
}
section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#home{
    min-height: 100vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f5f5;
}
#home h2{
    font-size: 36px;
    margin-bottom:10px;
}
#home p{
    font-size:18px;
    margin-bottom:20px;
}
.btn{
    display:inline-block;
    padding: 12px 24px;
    background-color: #2563eb;
    color:white;
    text-decoration: none;
    border-radius:6px;
    font-weight: 600;
    width: fit-content;
}
.btn:hover {
  background-color: #1e40af;
}
/* Outline button */
.btn.outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn.outline:hover {
  background: #2563eb;
  color: white;
}
#about {
  background-color: #ffffff;
}

#about p {
  max-width: 900px;
  margin-top: 15px;
}
#skills {
  background-color: #f9f9f9;
}

#skills ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

#skills li {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
#projects {
  background-color: #ffffff;
}

.project-item {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

.project-links {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.project-item ul {
  margin-top: 10px;
  padding-left: 20px;
}
#education {
  background-color: #f9f9f9;
}

.education-item {
  background: white;
  padding: 20px;
  border-left: 4px solid #2563eb;
  margin-bottom: 20px;
  border-radius: 6px;
}
#contact {
  background-color: #111;
  color: white;
}

.contact-links a {
  color: #60a5fa;
  text-decoration: none;
  margin-right: 15px;
}

.contact-links a:hover {
  text-decoration: underline;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: white;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
  }

  section {
    padding: 60px 20px;
  }

  #home h2 {
    font-size: 28px;
  }
}
