@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #081b29;
    color: #ededed;
    font-family: "Poppins", sans-serif;
}

html{
    scroll-behavior: smooth;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #081b29;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}
.logo::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}
.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}
.navbar a:hover{
    color: #00abf0;
}

.home{
    height: 100vh;
    
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content{
    max-width: 600px;
}
.home-content h1 {
    position: relative;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}
.home-content h1::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1s;
}
.home-content h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #00abf0
}
.home-content h3::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.3s;
}

.home-content p {
    position: relative;
    font-size: 20px;
    margin: 20px 0 40px;
}
.home-content p::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.6s;
}
.home-content .bnt-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}
.home-content .bnt-box::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.9s;
    z-index: 2;
}
.bnt-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background-color: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.bnt-box a:nth-child(1){
    background-color: transparent;
    color: #00abf0;
}
.bnt-box a:nth-child(1)::before{
    background: #00abf0;
}
.bnt-box a:nth-child(1):hover{
    color: #081b29;
}
.bnt-box a:nth-child(2){
    background-color: transparent;
    color: #00abf0;  
}
.bnt-box a:nth-child(2)::before{
    background: #00abf0;
}
.bnt-box a:nth-child(2):hover{
    color: #081b29;
}

.bnt-box a::before{
    content: '';
    position:absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background:#081b29;
    z-index: -1;
    transition: .5s;
}
.bnt-box a:hover::before{
    width: 100%;
}
.home-sci{
    position: absolute;
    bottom: 40px;
    width: 210px;
    display: flex;
    justify-content: space-between;
}
.home-sci::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 2.2s;
    z-index: 2;
}
.home-sci a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.home-sci a:hover{
    color: #081b29;
}
.home-sci a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background:#00abf0;
    z-index: -1;
    transition: .5s;
}
.home-sci a:hover::before{
    width: 100%;
}
.home-img {
    margin-top: 70px;
    margin-right: 100px;
}

.home-img img {
    width: 500px; /* Make sure the image fits within its container */
    border-radius: 10px;
    
}
.home-img{
   position: absolute;
   top: 0;
   bottom: 20px;
   right: 10px; 
   width: 500px;
   height: 100%;
   background: transparent;
   /* animation: manipActiveHover .1s forwards;
   animation-delay: 4s;
   pointer-events: none; */
}
.home-img:hover{
    background:#081b29 ;
}
.home-img::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color:#081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 3s;
    z-index: 2;
}
@keyframes showRight {
    100%{
        width: 0;
    }
}
/* @keyframes manipActiveHover {
    100%{
        pointer-events: auto;
    }
} */
 .navbar{
    position: relative;
 }
 .navbar::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color:#081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 3s;
    z-index: 2;
}

/* ABOUT */
.skills{
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10rem;
}

.skills li{
    list-style: none;
}

.skills p{
    color: #ccc;
}


.certifications{
    margin-top: 2rem;
    text-align: center;
}
.contact{
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* skills */
/* .Programming{
  background:#ddd;
  width: 300px;
  border: 15px solid green;
  padding: 50px;
  margin: 20px;
} */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.skill-box {
    background:#081b29;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #00abf0;
}

.skill__small-box{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.skill__small-box p{
    background: transparent;
    border: 1px solid #ccc;
    padding: 0.7rem 2rem;
    border-radius: 1rem;
    border: 2px solid #00abf0;
}

.skill-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color:#ddd;
    
}

.skill-box p {
    font-size: 16px;
    color: #ddd
}

.c-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.certificate img{
    width: 80%;
    padding: 1rem;
    margin-bottom: 30px;
}

.certificate {
    background:#081b29;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #00abf0;
}

.certificate a{
    text-decoration: none;
    cursor: pointer;
    
}

.certificate a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background: transparent;
    border: 2px solid #00abf0;
    color: #00abf0;
    border-radius: 8px;
    font-size: 19px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .5s;
    margin-top: 20px; /* Adjust margin as needed */
    z-index: 1;
    overflow: hidden;
}


.certificate a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background:#081b29;
    z-index: -1;
    transition: .5s;
}

.certificate a:hover::before {
    width: 100%;
}

.certificate a:hover {
    background: #00abf0;
    color: #081b29;
}


.education{
    background-color: #081b29;
    padding: 50px 20px;
    text-align: center;
}
.education h2{
    margin-bottom: 20px;
}
.education-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.education-item{
    background:#081b29;
    border: 1px solid #00abf0;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    width: calc(50% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
}

.contact-form {
    background:#081b29;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #00abf0;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    color:#ededed;
    
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 3px solid #00abf0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #081b29;
    color: #ededed;
    outline: none;
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color:#00abf0;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


 
