body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #eee;
  line-height: 1.6;
}

a {
  color: #00ffff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #222, #333);
  padding: 2em;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #00ffff;
}

h1 {
  color: gold;
  font-size: 1.8em;
  margin: 0.5em 0;
}

.tagline {
  font-size: 1em;
  color: #ccc;
}

section {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

ul, ol {
  padding-left: 1.5em;
}

li {
  margin-bottom: 1em;
}

footer {
  text-align: center;
  padding: 1em;
  background: #000;
  margin-top: 2em;
}

footer .socials i {
  font-size: 1.5em;
  margin: 0 10px;
  color: #00ffff;
}
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  padding: 2em;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background-color: #222;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.1);
  text-align: center;
}
.project-card1 {
  background-color: green;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.1);
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.project-card h3 {
  color: gold;
  margin: 0.5em 0;
}
.project-card1 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.project-card p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 0.8em;
}

.project-card a {
  display: inline-block;
  padding: 0.5em 1em;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}
.project-card1 a {
  display: inline-block;
  padding: 0.5em 1em;
  background: red;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}
.project-card a:hover {
  background: #00cccc;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  z-index: 999;
  padding: 10px 15px;
  font-size: 18px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background-color: #444;
}

.taglines {
  text-align: center;
  word-spacing: 5px;
  background-color: #224;
  font-family: Tahoma;
  padding: 1em;
}

  .back {
    background-color: #224;
    text-align: center;
    border: 3px  solid green;
  border-radius: 20px;
  margin-inline: 22px;
  }
  
  .web3 {
    background: linear-gradient(90deg, #3498db 40%, #2ecc71 60%);
text-align: center;
color: black;
  }
  
  .article {
    background: linear-gradient(90deg, #3498db 40%, #2ecc71 60%);
    
  }




