body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, #skills {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
#para {
  font-size: 1.125rem;
  max-width: 65ch;
  margin: 1.5rem auto;
  color: #d4cdcd;
  line-height: 1.8;
  font-family: 'Roboto';
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.heading {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: -0.5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 2rem 0;
}

.social-icons a {
  text-decoration: none;
}

.social-icon {
  color: #94a3b8;
  font-size: 20px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #60a5fa;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-icons i {
  font-size: 40px;
  color: white;
  transition: transform 0.3s, color 0.3s;
}

.tech-icons i:hover {
  transform: scale(1.2);
}

.tech-icons .icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin: 1px;
  transition: all 0.3s ease;
}

.tech-icons .icon-container:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.language-name {
  font-size: 14px;
  font-family: 'inter';
}

.tech-icons .fa-python:hover { color: #3776AB; }
.tech-icons .fa-css3-alt:hover { color: #264de4; }
.tech-icons .fa-html5:hover { color: #e34c26; }
.tech-icons .fa-js:hover { color: #F0DB4F; }
.tech-icons .fa-database:hover { color: #00758F; }

.tech-icon {
  font-style: normal;
  font-size: 40px;
  font-weight: bold;
}

.tech-icon.pandas, .tech-icon.numpy {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
  filter: brightness(0) invert(1);
}
.tech-icon.pandas:hover { 
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(638%) hue-rotate(359deg) brightness(103%) contrast(94%);
}
.tech-icon.numpy:hover { 
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(1946%) hue-rotate(199deg) brightness(95%) contrast(89%);
}
#skills{ 
  text-align:center;
  font-family: 'inter';
  }
#img{
  height: 200px;
  width: 200px;
  border-radius: 50%;
  display: flex;
  border: 4px solid #a78bfa;
  justify-content: center;
  align-items: center;
}
header{
  display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}