* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; 
 } 

.bod {
  color: #ffffff;
  overflow: hidden;
}

.hero1 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
}

/* LEFT CONTENT */
.content {
  max-width: 650px;
  animation: slideIn 1.2s ease forwards;
}

.intro {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.7;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 span {
  color: #a855f7;
}

.highlight {
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background: rgba(168, 85, 247, 0.3);
  z-index: -1;
}

.subtitle {
  margin-top: 25px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* RIGHT VISUAL */
.visual {
  animation: fadeIn 1.5s ease forwards;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.4);
}

/* ANIMATIONS */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero1 {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .visual {
    margin-top: 50px;
  }
}
.cursor {
  display: inline-block;
  margin-left: 4px;
  color: #a855f7;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.avatar {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  box-shadow: 0 0 90px rgba(168, 85, 247, 0.45);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0b0f14;
}



.avatar {
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 70%);
  box-shadow: 0 0 120px rgba(168, 85, 247, 0.45);
}

.avatar img {
  width: 220px;
  height: auto;
  object-fit: contain;
}
.avatar {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

