.homePage {
    width: 100%;
    height:1200%; 
    margin-top: 60px; /* ensure space below fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


#image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, #b0f3f1, #a1c4fd); /* fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    z-index: 100;
    margin-top: 20px;
    box-shadow: 0 0 14px rgba(254, 240, 169, 0.8); /* clean white glow */
    position: relative; 
    animation: moveUpDown 2s infinite ease-in-out alternate;

}




#image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    z-index: 100;
}


#name{
    margin-top: 20px;
    color: white;
    font-size: 1.7rem;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    z-index: 100;
    margin-top: 40px;
}

#headLine.animate {
  animation: fadeInOut 5s ease-in-out;
  color: white;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 1px;
  font-size: clamp(0.8rem, 1.5vw, 1rem);

}
#headLine{
  text-align: center;
  z-index: 100;
}



@keyframes fadeInOut {
  0%   {
    opacity: 0;
  }
  20%  {
    opacity: 1;
  }
  80%  {
    opacity: 1;
  }
  100% {
    opacity: 0;
    text-shadow: none;
  }
}



.socialMediaImges {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* spacing between icons */
    margin-top: 40px;
    z-index: 100;
}

.socialMediaImges i {
    font-size: 1.7rem;
    color: white;
    transition: color 0.3s ease;
    cursor: pointer;
  
}


#githubImg{
    position: relative; 
}



#faceeBook{
    position: relative; 
}

#linkedIn{
    position: relative; 
}




@keyframes moveUpDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(1px);
  }
}



/* Hover Effects */
#githubImg:hover {
    color: #e1d449;
    animation: none;
}

#faceeBook:hover {
    color: #4992e1;
    animation: none;
}

#linkedIn:hover {
    color: #4992e1;
    animation: none;

}






#welcomBtn {
    border-radius: 15px;
    border: 1px solid #ffcc0070; /* solid yellow border */
    margin-top: 40px;
    width: 100px;
    color: white;
    font-weight: 600;
    position: relative;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    transition: color .5s ease, box-shadow 1.5s ease;

    /* remove after complete */
    box-shadow: 0 0 5px #ffcc00, 0 0 5px #ffcc00;
    color: #000;
    background-color: #fff200;
}


#welcomBtn:hover {
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  70%  { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}


@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.scrollText{
    color: white;
    margin-bottom: 10px;
    z-index: 100;
 
}

.mouse-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  cursor: pointer;
  z-index: 100;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #aaa;
  border-radius: 20px;
  position: relative;
   z-index: 100;
}

.wheel {
  width: 4px;
  height: 10px;
  background: #aaa;
  border-radius: 2px;
  margin: auto;
  position: absolute;
  top: 10px;
  left: 0;
   z-index: 100;
  right: 0;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.3;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}

@keyframes arrow-down {
  0% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 0.4;
  }
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
}

#dotsCanvas{
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}
