body {
        
    font-family:"Poppins";  
    width:100%;
    height:100vh; 
    background-color: black; 
    overflow-x: hidden;
    color:white;
}  

* {
    padding:0; 
    margin:0; 
    box-sizing: border-box;
}



nav {
    width:100%; 
    height:10vh; 
    position:sticky;
} 

.nav-container {
    width:100%; 
    height:100%;
    display:flex; 
    justify-content: space-around; 
    align-items:center;
}  

.logo {
color:white; 
font-size:2rem; 
font-weight:bold;
} 

.logo span {
    color:rgb(112, 16, 112); 
    text-shadow: 0 0 10px rgb(95, 9, 95);
} 

.hamburg,
.close { 
    cursor:pointer;
    position:absolute;
    right:15px;
    top:10px; 
    color:white;
    display:block; 
    font-size: clamp(2.5rem, .5rem + 5vw, 3rem)
} 

.nav-container .links { 
    display:flex;

} 

.nav-container .links a {
    position:relative; 
    font-size: 1.2rem; 
    color:white; 
    margin: 0 20px;
    text-decoration: none; 
    font-weight:500; 
    transition: .3s linear;
}

.nav-container .links a::before {
    position:absolute; 
    content: ""; 
    bottom: -3px; 
    left:0; 
    width:0%; 
    height:3px; 
    background-color: purple;
    transition: width 0.3s ease-in-out; } 

.nav-container .links a:hover::before {
    width:100%
} 
.nav-container .links a:hover {
    color:rgb(255, 42, 255);
} 

.dropdown {
position:absolute;
top:0;
transform:translateY(-500px); 
width:100%;
height:auto; 
backdrop-filter: blur(4px) brightness(40%);  
background-color: rgb(222, 44, 232);
box-shadow: 0 0 20px black; 
transition: .2 linear;
z-index:5;
} 
img {
    max-width: 100%;
    height: auto;
    z-index:-1;
  }
  
.dropdown .links a { 
    display:flex; 
    color:white;
    text-decoration: none; 
    justify-content: center; 
    padding: 15px 0; 
    align-items:center; 
    transition: background-color 0.3s ease, transform 0.3s ease;
} 

.dropdown .links a:hover {
    background-color: purple;
    transform: scale(1.05); 
} 

section {
    width:100%;
    height:90vh; 
} 

.header {
    width:100%; 
    height:100%;
    display:flex; 
    justify-content:space-evenly; 
    align-items:center;
}

/* */
.header .image {
    width:700px; 
    height:80vh; 
    border-radius:100%;
    overflow:hidden; 
    box-shadow: 0 0 50px purple;

}

.header .image img {
    width: 100%;
    height: auto; 
    object-fit: cover; 
}
.header .image:hover {
    animation: animate 1.5s ease-in-out infinite; 
}

@keyframes animate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
} 

.header .content {
    color:white;
    width:40%; 
    min-height:100px; 
}

.image1 img {
    z-index:-1;
}

.content h1 {
    font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
} 

.content h1 span {
    color: purple;
    text-shadow: 0 0 10px purple;
}



.content .animation {
    font-size:clamp(1rem, 1rem + 5vw, 1.8rem);
    font-weight:600;
}

.content .animation-text {
    color:purple;
    text-shadow: 0 0 10px purple; 
}

.content p { 
    font-size: clamp(.4rem, .2rem + 9vw, 1rem);
    margin :10px 0;
} 

.social i {
display:inline-flex; 
justify-content: center;
align-items:center;
width: 3rem; 
height: 3rem; 
background-color: transparent; 
border: .2rem solid purple; 
border-radius:50%; 
color:purple;
margin: 0 15px; 
font-size: 1.5 rem; 
transition: .2s linear;
}  

.social i:hover {
    scale: 1.3;
    color:black; 
    background-color:purple;
    filter: drop-shadow(0 0 10px purple);
} 

.content button {
    width: 300px; 
    height: 6vh; 
    margin: 30px; 
    background-color: purple;
    color:white; 
    border:none; 
    outline:none; 
    font-weight: 700; 
    border-radius: 5px; 
    transition: .2s linear; 
    cursor:pointer; 
    margin-left:-4px;
} 

.content button:hover {
    scale: 1.1; 
    color: purple; 
    border: 2px solid purple; 
    background-color: transparent; 
    font-weight: 700; 
    box-shadow: 0 0 40px purple;
}

.resume { 
    font-family:"M";
    display: inline-block;  
    width: 100%;     
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold; 

} 

@media (max-width:884px) {
    nav .logo {
        position:absolute; 
        top:16px; 
        left:15px; 
        font-size:1.5rem;
    } 
    .header {
        display:flex; 
        flex-direction: column; 
        z-index:-1;
    } 

    .nav-container .links {
        display:none;
    } 

    .hamburg 
    .close {
        display:block; 
    }
.header .content {
    width:80%;
} 



.social i {
    width: 2.5rem; 
    height: 2.5rem; 
    font-size: 1.5rem;
}
.header .image {
    width:50%; 
    height:60%;
}

} 

@media(max-width:440px) {
    .header .image {
        width:50%; 
        height:40%;
    } 


    .header .content {
        width:80%;
    } 

    .header button {
        margin-top:15px;
    }
}

.header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    z-index:-1;
}  

.image {
    z-index:-1;
}


.header-about h1 {
    color:white;
    margin-top:5%;
} 

.header-about {
    margin-left:10%;  
    z-index:-1; 

}

.header-about {
    color:white;
    width:40%;
    position: relative;

}

 hr {
    background-color:rgb(176, 9, 176); 
    border:none; 
    width:40px; 
    height:2px;
} 

.image1 {
    margin-left: 65%;
    box-shadow: 0 0 20px purple;
    display: inline-block;
    position: absolute;
    top:20%;  
    z-index:-1;


}

.image1 img {
    display: block;
    width: 100%;
    height: auto;
} 

.header-about li {
    border: 2px solid purple;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px; 
    list-style:none;
}



.number2 {
    text-align: center;
    
  }
  
  .number2 img {
    max-width: 100%;
    height: auto;
  }
  
  






.purple li.grey {
    color: grey;
    border: 2px solid grey;
}


.number2 img {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
  }
  
  @media (max-width: 480px) {
    .header-about h1 {
      font-size: 1.5em; 
    }
  
    .number2 img {
        width: 100%;  
        height: auto;
      }
    
      .header-about h1 {
        font-size: 2em; 
      }
    
  

  
  img {
    max-width: 100%;
    height: auto; 


  }

   .applications {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .laptop-display,
  .mental-health
   {
    width: 90%; 
    margin-bottom: 30px;
  }

  .back-end {
    position:absolute; 
    top:2200px;
  }

  .front-end h1 {
    margin-top:45px;
  }

  .back-end h1 {
    margin-top:50px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}



  


  
 
