*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    font-family: 'Poppins';
    background-color:#1f242d ;
    color: #fff;
}
.header{
    position: fixed;
    top:0 ;
    left: 0;
    width: 100%;
    padding: 20px 10% ;
    background: transparent;
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index:100;

}
.logo{
    font-size: 25px; 
    color:#fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight .1s ease forwards;
    

}
.navbar a{
    font-size:18px;
    color:#fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop .5s ease forwards;

    }
.navbar a:hover,
.navbar a.active{
    color: #0ef;
}
.home{
    position: relative;
    width: 100%;
    height: 100vh;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:70px 10% 0;
}
.home-content{
    max-width: 600px;
}
.home-content h3{
    font-size:32px ;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;

}
.home-content h3:nth-of-type(2){
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;

}
.home-content h3 span{
    color:#0ef;

}
.home-content h1{
    font-size:56px;
    font-weight: 700;
    margin:-3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}
.home-content p{
    font-size:16px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: .7s;
}
.home-img img {
    max-width:450px;
    margin-right: -20px;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 2s,3s;
}

@keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
   100%{
        transform: translateX(0);
        opacity: 1;

    }
}
@keyframes slideTop{
    0%{
        transform: translatey(100px);
        opacity: 0;
    }
   100%{
        transform: translatey(0);
        opacity: 1;

    }
}
@keyframes slideBottom{
    0%{
        transform: translatey(-100px);
        opacity: 0;
    }
   100%{
        transform: translatey(0);
        opacity: 1;

    }
}
@keyframes slideLeft{
    0%{
        transform: translatey(100px);
        opacity: 0;
    }
   100%{
        transform: translatey(0);
        opacity: 1;

    }
}
@keyframes zoomIn{
    0%{
        transform: scale(0);
        opacity: 0;
    }
   100%{
        transform:scale(1);
        opacity: 1;

    }
}
@keyframes floatImage{
    0%{
        transform: translateY(0);
    }
    50%{
        transform:translatey(-24px);
    }
    100%{
        transform: translateY(0);
    }

}
.hire-me-btn {
    margin-right: 50%;
    margin-left: 50%;
    background: linear-gradient(45deg, #ff6b6b, #f06595, #f8961e, #f9c74f);
    background-size: 300% 300%;
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientBG 5s ease infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hire-me-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
