@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');
body{
    margin: 0;
    font-family: "Poppins", sans-serif;
    padding: 0;
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
video{
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    z-index: -2;
    object-fit: cover;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.603);
}
.profile-card{
    width: 350px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.card-header{

    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    width: 50px;
}
.completed-projects .italic{
    font-style: italic;
    font-weight: bold;
    margin-right: 10px;
}
.completed-projects .badge{
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #19ff1931;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.completed-projects .badge .badge2{
    width: 40%;
    height: 40%;
    border-radius: 100%;
    background:#19ff1959 ;
}
.completed-projects{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    padding: 10px 20px;
    background: #0f0f0f;
    border: 1px solid #252525;
    border-radius: 90px;
}
.profile-details{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: white;
}
.profile-image{
    width: 100%;
    border-radius: 20px;
}

.profile-text{
    position: relative;
    width: 70%;
    z-index: 2;
    bottom: 65px;
}

.text{
    position: relative;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.text a{text-decoration: none;    color: rgba(255, 255, 255, 0.781);}
.text .content{
    font-size: 0.9rem;

    transition: color 0.25s ease-in-out;
}


.text .content:hover{
    color: white;
}

.text .content::after {
    content: "Bana Ulaşın";
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 0%;
    opacity: 0;
    border-radius: 90px;
    display: inline-block;
    padding: 5px 10px;
    background: #0f0f0f9f;
    font-size: 0.8rem;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.text .content:hover::after {
    top: -30%;
    opacity: 1;
}

.text .bio{
    margin-top:5px;
    font-size: 0.8rem;
    font-style: italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.social-links a{
    text-decoration: none;
    font-size: 1.6rem;
    position: relative;
    bottom: 30px;
    background: -webkit-linear-gradient(45deg,#3F0406, #BA1517);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.25s ease-in-out;

}

.social-links a:hover{
    transform: scale(1.1);
}

footer{
    position: fixed;
    z-index: 2;
    bottom: 10px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.6rem;
}