*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: rgb(11, 2, 29);
    color:antiquewhite;
}
#dot-bg{
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -10000;
    pointer-events: none;
}
.divp{
    background: radial-gradient(
    circle,
    rgba(14, 114, 92, 0.6) 0%,   /* center (darker) */
    rgba(14, 114, 92, 0.2) 40%,
    rgba(14, 114, 92, 0.17) 40%,
    rgba(14, 114, 92, 0) 100%   /* fully transparent edges */
  );
    border: none;
    border-radius: 50%;
}
.div1{
    position: absolute;
    top:-150px;
    left: -150px;
    width:50vmin;
    height:50vmin;
    z-index: -1;
}

#Namelogo{
    font-family:  "Boldonse", system-ui;;
    font-size: 2rem;
    margin: 10px 0px 0px 15px;
}
.header{
    display: flex;
}
.logo{
    width:40%;
}
.links{
    position: absolute;
    right: 8px;
    top: 30px;
    z-index: 1000;
    pointer-events: auto;
    display: flex;
    width:60%;
    justify-content: space-around;
    font-family: "Boldonse", system-ui;
    font-size: 0.8rem;
}
.links a{
    text-decoration: none;
    color:antiquewhite;
}
.body{
    display:flex;
}
.profileimg{
    width:50%;
    height:100vmin;
    background-image: url("pictures/Profile.png");
    background-size: cover;
    position: relative;
    padding-left: 5vmin;
}
.profileimg:hover{
  background-image: url("pictures/Profilehover.png");
}
.bodytext{
    padding-left:25px;
}
.name{
    font-family: "Boldonse", system-ui;
    font-size: 2.25rem;
    position: relative;
    top:20vmin;
    text-shadow: 
        4px 4px 4px rgb(255, 61, 236),
        -5px -5px 5px rgba(26, 101, 78, 0.762);   
    align-self: center;
}
#hello{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    text-shadow: none;
}
#hello1{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    text-shadow: none;  
}
.profession{
    position: relative;
    top: 30vmin;
}
@keyframes fadeSlideDown {
  to {
    opacity: 1;
    transform: translateX(0); /* move to normal position */
  }
}
.fade-slide {
  opacity: 0;
  transform: translateY(-50px); /* start above */
  animation: fadeSlideDown 0.8s ease-out forwards;
}
.fade-slide-prof{
  opacity: 0;
  transform: translateY(-50px); /* start above */
  animation: fadeSlideDown 0.8s ease-out forwards;
    animation-delay: 0.5s; /* delay for profession */
}
.fade-slide-left1 {
  opacity: 0;
  transform: translateX(-60px); /* start above */
  animation: fadeSlideDown 0.8s ease-out forwards;
}
.fade-slide-left2 {
  opacity: 0;
  transform: translateX(-60px); /* start above */
  animation: fadeSlideDown 0.8s ease-out forwards;
  animation-delay: 0.8s;
}
@media (max-width: 1100px) {
    .profileimg {
        width:80% ;
        position:relative;
        top:580px;
    }
    .links{
        position: absolute;
        right: 8px;
        top:30px;
        z-index: 1000;
        pointer-events: auto;
        display: flex;
        width:60%;
        justify-content: space-around;
        font-family: "Boldonse", system-ui;
        font-size: 0.5rem;
    }
    .body {
        flex-direction: column; 
        align-items: center;
    }
    .bodytext {
        padding: 20px; 
        position: absolute;
        top:0px;
        z-index: -1;
    
    }
    .div1{
        position: absolute;
        top:-50px;
        left:-70px;
    }
    
    .div2{
        position: absolute;
        left:140px;
        top:700px;
    }
    header{
        position: relative;
        z-index: 1;
    }
}
/* Strands Background Styling */
/* Add this to the very top of style.css */
#strands-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -9999 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

#strands-bg canvas {
    display: block !important;
    width: 100% !important;
    height: 200% !important;
}


body {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}

.slide-down {
  transform: translateY(100%);
  opacity: 0;
}
.abtmain{
    display:flex;
}

.about-img{
    width:50%;
    height:100vmin;
    background-image:url("pictures/about.png");
    background-size:cover;
    background-repeat: no-repeat;
    margin-left:1vmin;
}
.about-img:hover{
  background-image: url("pictures/abouthover.png");  
}
#bio{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    text-shadow: none; 
}
#h1decor{
    font-family: "Boldonse", system-ui ;
    font-size: 1.7rem;
} 
.aboutbody{
    z-index: 1;
    padding-left: 20px;
    padding-top: 50px;
}
.skills{
    padding-top: 30px;
}
.frontendrow1{
    height:14vmin;
    width:80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0px 15px 0px;
}
.skilldes{
    height:13vmin;
    width:13vmin; 
    border-radius: 30%;
}
.skilldes:hover{
    transform:scale(1.1,1.1);
}
.html{
    background-image: url("pictures/html5.png");
    background-size:contain;
    background-repeat: no-repeat;
}
.css{
    background-image: url("pictures/CSS.png");
    background-size: cover;
}
.javascript{
    background-image: url("pictures/javascript.png");
    background-size: cover;
}
.backend{
    display: none;
}
.python{
    background-image: url("pictures/Python.png");
    background-size: cover;
}
.C{
    background-image: url("pictures/C_Logo.png");
    background-size:contain;
    background-repeat: no-repeat;
}
.Java{
    background-image: url("pictures/java.webp");
    background-size: cover;
}
.cplus{
    background-image: url("pictures/c++.png");
    background-size:contain;
    background-repeat: no-repeat;
}
.msword{
    background-image: url("pictures/msword.png");
    background-size: cover;
}
.msexcel{
    background-image: url("pictures/msexcel.png");
    background-size: cover;
}
.mspp{
    background-image: url("pictures/mspp.png");
    background-size:contain;
    background-repeat: no-repeat;
}
@media (max-width: 1100px) {
    .about-img {
        width:100% ;
    }
    .abtmain {
        flex-direction: column; 
        align-items: center;
    }
    .skills {
        padding: 20px; 
    }
    .div3{
        position: absolute;
        left:-160px;
        top:600px;
    }
}
.logo a{
    text-decoration: none;
    color: inherit;
}

#aurora-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -9999;
    pointer-events: none;
}
#aurora-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}