@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(#da3732, #000);

}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 650px;
    width: 350px;
    background:linear-gradient(rgba(0, 0, 0, 0.829), rgba(0, 0, 0, 0.527)),url('CARD\ BG.webp') no-repeat center/cover;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 1px 1px 30px #000;
    border: solid 3px #da3732;
    animation: fadeIn 1s ease-in-out forwards;
  
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.profile-card .logo img {
    width: 263px;
    height: 100px;
    animation: x 2s ease 1;
}

@keyframes x {
    0% {
        opacity: 0;
        translate: 0 -85px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

/*.profile-card .sub_logo img {*/
/*    width: 158px;*/
/*    height: 60px;*/
/*    animation: y 2s ease 1;*/
/*}*/


.profile-card .line {
    margin: auto;
    background: #fff;
    width: 200px;
    height: 1px;
    box-shadow: 1px 1px 8px #fff;
    animation: y 2s ease 1;
}

@keyframes y {
    0% {
        opacity: 0;
        translate: -170px 0;
    }
}

.profile-card .text-data2 .name {
    margin-top: 15px;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
     animation: k 1.5s ease 1;
   
}

.icons {
    margin: 15px 0 0 0px;
    background-color: #00000000;
    height: 200px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 295px;
    gap: 25px;
    border-radius: 10px;
    border: solid 2px #da3732;
    box-shadow: 1px 1px 8px #da3732;
     animation: k 1.5s ease 1;

}

@keyframes k {
    0% {
        opacity: 0;
        translate: 0 130px;
    }
}


p {
    display: flex;
    text-transform: capitalize;
    color: #da3732;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

a {
    color: #da3732;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}



.profile-card .icons .item1 {
    margin-right: 25px;
    margin-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     
  
}

.icons .item1 a i {
    display: flex;
    justify-content: center;
}

.profile-card .icons .item2 {
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}



.profile-card .icons .item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
  
}

.profile-card .icons .item4 {
    margin-right: 45px;
    margin-left: 49px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}


.profile-card .text .find {
    color: #fff;
    margin-top: 10px;
    padding: 10px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    animation: k 1.5s ease 1;
}



.profile-card .social .facebook,
.insta,.linkedin {
    font-size: 30px;
    padding: 0px 5px 0px 5px;
    border-radius: 15px;
    cursor: pointer;
    border: solid 2px #da3732;
    box-shadow: 1px 1px 5px #da3732;
}

.social {
    margin-top: 10px;
    display: flex;
    width: 300px;
    gap: 40px;
    justify-content: center;
    align-items: center;
     animation: k 1.5s ease 1;
}

.facebook,.insta,.linkedin{
    height: 45px;
}

.line1{
    margin: auto;
    background: #fff;
    width: 210px;
    height: 1px;
    margin-top: 15px;
    box-shadow: 1px 1px 8px #fff;
     animation: k 1.5s ease 1;

}

.share-btn{
    position: relative;
    border: none;
    color: #da3732;
    border-radius: 50%;
     width: 30px;
    height: 30px; 
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
}

.share-btn a{
    color: #da3732;
}

.share-options{
    position: absolute;
    bottom: 20%;
    left: 53%;
    width: 65px;
    height: 70px;
    transform-origin: bottom right;
    transform: scale(0);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 10px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;;
}



.share-options.active{
    transform: scale(1);
    transition-delay: 0s;
}


.share-options.active ,
.share-options.active .social-media,
.share-options.active {
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}

.share{
    display: flex; 
    justify-content: center;
   margin-right: 15px;
   gap: 40px;
   margin-top: 20px;
    animation: k 1.5s ease 1;
   
  
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#closePopupButton{       
    font-size:17px;
    margin-top:10px;
    }

    #installPopup {
        display: none;
        padding: 15px  30px;
        width: 80%;
        max-width: 400px;
        border: 1px solid black;
        background: #f9f9f9;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        text-align: center;
        
    }
    

    /* Install button styling */
    #multiActionButton {
        display:inline;
        padding: 0px 15px;
        font-size: 25px;
        color:#da3732 ;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 3px;
    }

    #multiActionButton i{
        margin-left: 5px;
    }


.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 12px;
    color: #da3732;
    letter-spacing: 1px;
    font-weight: 600;
     animation: k 1.5s ease 1;

}

.profile-card .footer a {
    color: #da3732;
    margin-left: 3px;
}


