/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #1f2937 ;
  color:antiquewhite;
  padding:0;
  margin: 0;
}
#navigation {
  background-color: #1e293b;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 30px;
  display:flex;
  flex-direction: row;
  gap:4rem;
  justify-content: center;
}

#navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

#navigation a {
  text-decoration: none;
  color: #f8fafc;
  font-weight: bold;
  transition: color 0.3s;
}

#navigation a:hover {
  color: #38bdf8;
}

/* ========== Home Section ========== */
#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#imgContainer img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#dp{
  border-radius:100px ;
}

#infoContainer h1 {
  font-size: 2.5rem;
  color: #cfd7e8;
}

#infoContainer h2 {
  font-size: 1.5rem;
  color: #d2dbe7;
  margin-top: 10px;
}

#infoContainer p {
  max-width: 600px;
  margin-top: 15px;
  font-size: 1rem;
  color: #b7bdc6;
}

/* ========== Footer / Contact ========== */
#contact {
  margin-top: 50px;
  text-align: center;
  padding: 30px 10px;
  background-color: #1e293b;
  color: #f8fafc;
  border-radius: 10px;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#contact p {
  margin-bottom: 20px;
}

#contact ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#contact a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

#contact a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  #navigation ul {
    flex-direction: column;
    gap: 10px;
  }

  #home {
    padding: 0 10px;
  }

  #infoContainer h1 {
    font-size: 2rem;
  }

  #infoContainer h2 {
    font-size: 1.25rem;
  }
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 50px);
  gap: 15px;
  justify-content: center;
}
.icon-grid img {
  width: 40px;
  height: 40px;
  filter: grayscale(30%);
  transition: filter 0.3s, transform 0.3s;
}
.icon-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}
#github-projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.project-card {
  background: #252627;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
}

.project-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #6366f1;
  text-decoration: none;
}
.heart {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.pop {
  animation: pop 0.3s ease-in-out forwards;
}

@keyframes pop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
h3 ,h2{
 text-align:center;
 margin:1.2rem;
 
}