@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;
    width: 100%;
    background: radial-gradient(#d79940, #000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 680px;
    width: 340px;
    background: #3a3a3c;
    border-radius: 24px;
    box-shadow: 1px 1px 15px 0 #d79233;
    border: solid 3px #3a3a3c;
    animation: fadeInScale 1s forwards;

}

.profile-card .logo img {
    width: 203px;
    height: 150px;
    /* animation: x 2s ease 1; */
    animation: slideDown 0.7s 0.8s forwards;
    opacity: 0;
}

/* @keyframes x {
    0% {
        opacity: 0;
        translate: 0 -55px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
} */

.profile-card .line {
    margin-top: 5px;
    height: 1px;
    width: 150px;
    background-color: #d79233;
    box-shadow: 1px 1px 6px #d79233;
     /* animation: y 2s 1s ease 1;  */
     animation: slideDown 0.7s 1.5s forwards;
     opacity: 0;
}



.profile-card .text-data .name {
    margin-top: 10px;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 20px;
    font-weight: 600;
    /* animation: y 2s ease 1; */
     animation: slideDown 0.7s 2s forwards;
     opacity: 0;
}

 /* @keyframes y {
   from {
        opacity: 0;
        translate: -170px 0;
    }

    to {
        opacity: 1;
    }
}  */

.icons {
    height: 170px;
    margin-top: 10px;
    padding: 10px;
    background: #3a3a3c;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(2, auto);   /* 2 rows */
    box-shadow: 1px 1px 5px #000;
    width: 290px;
    justify-content: space-evenly;
    border-radius: 10px;
    /* animation: k 1.5s ease 1; */
    align-content: center;
    border: solid 3px #d79233;
     gap: 15px; 
    animation: fadeInScale 0.7s 2.5s forwards;
    opacity: 0;
}

/* @keyframes k {
    0% {
        opacity: 0;
        translate: 0 150px;
    }
} */

.icons div {
    margin: 15px;
}

p {
    display: flex;
    text-transform: capitalize;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    transition: 0.3s;
}

p:hover{
    color: #d79233;
}

a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover{
    color: #d79233;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



















.profile-card .text .find {
    color: #fff;
    margin-top: 10px;
    padding: 10px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    /* animation: f 1.5s ease 1; */
    animation: slideDown 0.7s 4.5s forwards;
     opacity: 0;
}

/* @keyframes f {
    0% {
        opacity: 0;
        translate: 0 170px;
    }
} */

/* .profile-card .social {
    animation: z 2s ease 1;
} */

/* @keyframes z {
    0% {
        opacity: 0;
        translate: 0 140px;
    }
} */

.profile-card .social .facebook,
.insta,
.linkedin {
    background: #3a3a3c;
    font-size: 30px;
    cursor: pointer;
}

.profile-card .social .facebook a {
    color: #fff;
    transition: 0.3s;
    animation: slideup 0.7s 5s forwards;
     opacity: 0;
    border: solid 2px #d79233;
     border-radius: 15px;
}

.profile-card .social .facebook a:hover{
    color: #d79233;

}


.profile-card .social .linkedin a {
    color: #fff;
    transition: 0.3s;
     animation: slideup 0.7s 5.2s forwards;
     opacity: 0;
       border: solid 2px #d79233;
        border-radius: 15px;
}

.profile-card .social .linkedin a:hover{
    color: #d79233;

}


.profile-card .social .insta a {
    color: #fff;
    transition: 0.3s;
     animation: slideup 0.7s 5.4s forwards;
     opacity: 0;
       border: solid 2px #d79233;
        border-radius: 15px;
}


.profile-card .social .insta a:hover{
    color: #d79233;

}

.social {
    margin-top: 5px;
    display: flex;
    width: 190px;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.ve {
    display: flex;
    padding: 5px;
}

.profile-card .icons .item1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
     animation: fadeIn 1s 3s forwards;
     opacity: 0;
}

#telephone{
    animation: fadeIn 1s 4s forwards;
     opacity: 0;
}


.profile-card .icons .item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    animation: fadeIn 1s 3.2s forwards;
    opacity: 0;
}

.profile-card .icons .item4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    animation: fadeIn 1s 3.4s forwards;
    opacity: 0;
}



#hiddenText {
    display: none;
}

.profile-card .icons .item6 {
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    animation: fadeIn 1s 3.6s forwards;
    opacity: 0;
}


.profile-card .icons .item7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    animation: fadeIn 1s 3.8s forwards;
    opacity: 0;

}


body.noscroll {
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: -20px;
    left: -15px;
    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;
}




.profile-card .buttons {
    display: flex;
    align-items: center;
    margin-top: 10px;
    animation: z 2s ease 1;
    gap: 30px;
}


.buttons .button {
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 2px 12px;
    background-color: #3a3a3c;
    font-size: 16px;
    font-weight: 600;
    border-radius: 24px;
    border: solid 2px #d79233;
    box-shadow: 1px 1px 5px #000000;
    cursor: pointer;
    transition: all 0.3 ease;
    margin-top: 5px;

}

.buttons .button a{
       color: #fff;
       transition: 0.3s;
}

.buttons .button a:hover{
    color: #d79233;
}


#button1{
     animation: slideDown 0.7s 6s forwards;
     opacity: 0;
}

#button2{
    animation: slideDown 0.7s 6.2s forwards;
     opacity: 0;
}

.share-btn {
    position: relative;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
    margin-bottom: 15px;
    animation: fadeIn 1s 6.8s forwards;
     opacity: 0;
}

.share-btn a {
    color: #fff;
    transition: 0,3s;
}

.share-btn a:hover{
    color: #d79233;
}

.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;
}

/* .profile-card .share-btn {
    animation: z 2s ease 1;
} */

/* @keyframes z {
    0% {
        opacity: 0;
        translate: 0 140px;
    }
} */


.share {
    display: flex;
    justify-content: center;
    margin-right: 15px;
    gap: 30px;
    margin-top: 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;
    padding: 0px 15px;
    font-size: 25px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 3px;
    /* animation: z 2s ease 1; */
    transition: 0.3s;
     animation: fadeIn 1s 6.6s forwards;
    opacity: 0;
}

#multiActionButton i{
   margin-left: 6px;
}

#multiActionButton:hover{
    color: #d79233;
}



.profile-card .line1 {
    height: 1px;
    width: 125px;
    background-color: #d79233;
    box-shadow: 1px 1px 8px #d79233;
    /* animation: z 2s ease 1; */
    margin-top: 15px;
     animation: slideDown 0.7s 7.7s forwards;
     opacity: 0;
}

.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    font-size: 13px;
    color: #d79233;
    letter-spacing: 1px;
    font-weight: 600;

}

.profile-card .footer a {
    color: #fff;
    margin-left: 3px;
    transition: 0.3s;
    animation: fadeIn 1s 8.3s forwards;
     opacity: 0;

}


.profile-card .footer a:hover{
    color: #d79233;
}

/* .profile-card .footer {
    animation: z 2s ease 1;
} */

/* @keyframes z {
    0% {
        opacity: 0;
        translate: 0 140px;
    }
} */