
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    Font-Family: "Poppins","sans-seri";

}
body{
    background: #000000; ;
    color: white;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.logo {
    font-size: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}
.navbar a {
    display: inline-block;
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.navbar a:hover {
    color: #FF748B;
}

.container {
    text-align: center;
    font-size: 40px;
}

.h1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 10% 0;

}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.home-about {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
    margin-top: -250px;
}

.home-skills {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
    margin-top: 10px;
}

.home-projects1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
    margin-top: 20px;
}

.home-projects2 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
    margin-top: -120px;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 10%;
}

.profile-container {
    display: flex;
    align-items: center;
    margin-right: 40px;
    margin-top: 50px;
    margin-bottom: -50px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #f4b400;
}

.profile-info p {
    margin: 5px 0;
}

.about-content {
    max-width: 600px;
}

.about-content h1 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.skills h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.skill {
    margin: 10px 0;
}

.skill span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.skill-bar {
    background: #444;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.skill-level {
    background: #f4b400;
    height: 100%;
}

/* Soft Skills */
.soft-skills p {
    margin: 15px 0;
}


/*.card h4{*/
/*    !*position: relative;*!*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    display: flex;*/
/*    text-align: center;*/
/*}*/
.home-content1 {
    max-width: 600px;
}

.home-content1 h1{
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}
.home-content1 h3{
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content {
    max-width: 600px;
}

.home-content h1{
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.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: slideBottom 1s ease forwards;*/
/*    animation-delay: .7s;*/
/*}*/

.home-content h3 span{
    color: #FF748B;
}

.home-content-Skills{
    margin-bottom: 20px;
    opacity: 0;
    animation: slideBottom 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 0;
    animation-delay: 2s, 3s;
}

.home-content p{
    font-size: 16px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
    justify-content: space-evenly;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #FF748B;
    border-radius: 50%;
    font-size: 20px;
    color: #FF748B;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}
.social-media a:hover{
    background: #FF748B;
    color: #1f242d;
    box-shadow: 0 0 20px #FF748B;
}

.btn{
    display: inline-block;
    padding: 12px 28px;
    background: #FF748B;
    border-radius: 40px;
    box-shadow: 0 0 10px #FF748B;
    font-size: 16px;
    color: #1f242d;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;
}

.w-100{
    width: 30%;
}
/*KEYFRAMES ANIMATION*/
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-24px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}