body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0d1117;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 24px;
  color: #00f5ff;
  font-weight: bold;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #00f5ff;
}

.home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.text {
  flex: 1;
  max-width: 600px;
}

h2 {
  font-size: 36px;
  margin: 10px 0;
}

.highlight {
  color: #00f5ff;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.8);
}

.details {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.profile-pic {
  width: 300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.contact-item i {
  font-size: 22px;
  color: #00f5ff;
}

footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic {
    width: 250px;
  }

  h2 {
    font-size: 28px;
  }

  .details {
    font-size: 16px;
  }
}
