* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.header-content h1 {
  margin: 0;
}


nav p {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

section {
  padding: 20px 0;
}


.contact-info {
  background-color: #e7e7e7;
  padding: 10px;
  border-radius: 8px;
}


.education-details p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.education-details span {
  display: flex;
  align-items: center;
}

.education-details img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.skills-section {
  padding: 20px 0;
  background: #f9f9f9; 
}

.skills-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.skills-section h4 {
  color: #333;
  margin-bottom: 10px;
}

.skills-section .skills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.skills-section .skills span {
  background: #fff; 
  border: 1px solid #ddd; 
  padding: 5px 10px;
  border-radius: 5px; 
  margin-bottom: 10px; 
  display: flex;
  align-items: center;
}

.skills-section .skills img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.projects-container .project {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}


@media (max-width: 768px) {
  .header-content {
      flex-direction: column;
      text-align: center;
  }

  nav p {
      justify-content: center;
      margin-top: 10px;
  }

  .skills p, .education-details p {
      justify-content: center;
  }
}
