@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: linear-gradient(#1a3e72, #179fda);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    height: 600px;
    width: 340px;
    border-radius: 24px;
    box-shadow: 1px 1px 15px #1a3e72 ;
    background: #fff;
    border: 3px solid #1a3e72  ;

}

.profile-card .logo img {
    padding: 0px;
    display: flex;
    margin: auto;
    width: 121px;
    height: 85px;
    margin-top: 5px;
    animation: x 2s ease 1;
}


@keyframes x {
    0% {
        opacity: 0;
        translate: 0 -100px;

    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}


.profile-card .text-data {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: y 2s ease 1;
}

@keyframes y {
    0% {
        opacity: 0;
        translate: -170px 0;
    }
}

.text-data .name {
    font-size: 23px;
    font-weight: 600;
    color: #000;
}

.text-data .job {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    color: #065fa4 ;

}


.line1 {
    height: 1px;
    width: 280px;
    background: #f8a043;
    box-shadow: 1px 1px 10px #f8a043;
    margin: 10px 0 0 33px;
    animation: y 2s ease 1;
}

.find {
    color: #000;
    display: flex;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: capitalize;
    animation: k 1.5s ease 1;
}

.icons {
    border-radius: 10px;
    margin: auto;
    margin-top: 7px;
    height: 250px;
    width: 270px;
    background: #fff;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    box-shadow: 1px 1px 8px #000;
    border: 2px solid #000;
    animation: k 1.5s ease 1;
  
}

@keyframes k {
    0% {
        opacity: 0;
        translate: 0 150px;

    }
}


.item3 {
    width: 40px;
    height: 58px;
    display: flex;
    margin: auto;
    margin-left: 18px;
}

.item3 a {
    color: #065fa4;
    text-decoration: none;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
    margin-left: 10px;
}

.item3 a i {
    margin-left: 14px;
    display: flex;
}


.item5{
    width: 50px;
    height: 58px;
    display: flex;
    margin: auto;
    margin-left: 35px;
}

.item5 a{
    color: #065fa4;
    text-decoration: none;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
    margin-left: 10px;
}

.item5 a i {
    margin-left: 4px;
    display: flex;
}


.item6{
    width: 50px;
    height: 58px;
    display: flex;
    margin: auto;
    margin-left: 20px;
}

.item6 a{
    color: #065fa4;
    text-decoration: none;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
    margin-left: 10px;
}

.item6 a i {
    margin-left: 9px;
    display: flex;
}



.item4 {
    width: 45px;
    height: 57px;
    display: flex;
    margin: auto;
    margin-left:33px;

}


.item4 a {
    color: #065fa4;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.item4 a i{
    margin-left: 3px;
}



.item2 {
   width: 60px;
cursor: pointer;
font-size: 30px;
color: #065fa4;
margin-left: 20px;
  
}

.item2 a {
    color: #065fa4;
    text-decoration: none;
    font-size: 13px;
    margin-left: 4px;
    text-transform: capitalize;
    font-weight: 600;
}

.item2 a i {
    margin-left: 10px;
}



.insta {
    width: 45px;
    height: 50px;
    display: flex;
    margin: auto;
    margin-right: 0px;
    margin-top: 15px;
}

.insta a {
    color: #065fa4;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
}

.insta a i{
    margin-left: 17px;
}

.x {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-left: -3px;
}

.x a {
    color: #065fa4;
}




.facebook {
    width: 60px;
    height: 50px;
    display: flex;
    margin: auto;
    margin-left: 50px;
    margin-top: 17px;
}

.facebook a {
    color: #065fa4;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
}

.facebook a i{
    margin-left: 11px;
}


body.noscroll {
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index:10;
}
.overlay img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.overlay.show {
    visibility: visible;
    opacity: 1;
}

.qricon{
width: 50px;
cursor: pointer;
font-size: 30px;
color: #065fa4;
margin-left: 20px;
  
}

.qricon i{
    margin-left: 5px;
}


.linkedin{
width: 60px;
cursor: pointer;
font-size: 30px;
color: #065fa4;
margin-left: 20px;
}


.linkedin a {
    color: #065fa4;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
}

.linkedin i{
 margin-left: 10px;
}

.share-btn {
    position: relative;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: -3px;




}


.share-btn a {
    color: #065fa4;

}

.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;
    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;
    gap: 45px;
    margin-top: 20px;
    animation: k 1.5s ease 1;

}

.share a{
  text-decoration: none;
}

.share-btn a p{
    font-size: 16px;
}

.share-btn a i{
    margin-left: 10px;
}

#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;
    font-size: 25px;
    color: #065fa4;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    margin-top: -1px;
}

#multiActionButton p{
    font-size: 16px;
}

#multiActionButton i{
    margin-left: 7px;
}

.profile-card .share .video-img-cotainer{
    margin-right: 0px;
}

.profile-card .share .video-img-cotainer p{
    text-decoration: none;
    color: #1a3e72;
}

.profile-card .share .vid-img {
    width: 30px;
    margin-left: 10px;
}





.line2 {
    display: flex;
    margin: auto;
    margin-top: 10px;
    height: 1px;
    width: 175px;
    background: #f8a043;
    box-shadow: 1px 1px 10px #f8a043;
    animation: k 1.5s ease 1;
}

.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    font-size: 11px;
    color: black;
    letter-spacing: 1px;
    font-weight: 600;
    animation: k 1.5s ease 1;

}


.profile-card .footer a {
    color: black;
    margin-left: 3px;
    text-decoration: none;
    transition: 0.2s;
}

.profile-card .footer a:hover {
    color: #179fda;
}

