*{
    margin: 0%;
    padding: 0%;
}

body{
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    margin: 0%;
    padding: 0%;
    background-color: rgb(255, 199, 130);
}

body .container{
    height: 100%;
    width: 100%;
    background: linear-gradient(-135deg, #04fafd,  #119dff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .wrapper{
    height: 850px;
    width: 600px;
    background-color: white;
    box-shadow: 7px 8px 12px rgb(0, 0, 0, 0.3);
    display: flex;
    position: relative;
}


/* <=== Main Title ===> */


.main-title{
    height: auto;
    width: 80%;
    background-color: #6c54e3;
    position: absolute;
    top: 7.6%;
    right: 0%;

    box-sizing: border-box;
    padding: 20px;
    padding-left: 25%;
    z-index: 1;
}

.main-title h1{
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.2);
}

.main-title h3{
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 7.9px;
    margin-left: 1px;
}

/* <=== Left Section ===> */

.container .wrapper .left-section{
    box-sizing: border-box;
    height: 100%;
    width: 65%;

    display: flex;
    justify-content: space-between;
    flex-direction: column;

    position: relative;
}


/* <=== Left  Top Section ===> */


.left-section .top-section{
    height: auto;
    position: absolute;
    z-index: 10;
}

.top-section .profile-image{
    display: flex;
    position: absolute;
}

.top-section .profile-image .circle{
    position: absolute;
    top: 26px;
    left: 61px;
    height: 165px;
    width: 165px;
    background-color: white;
    border: 9.9px double white;
    border-radius: 50%;
    z-index: 8;  
}

.top-section .profile-image .circle2{
    position: absolute;
    top: 20px;
    left: 55px;
    height: 187px;
    width: 187px;
    border: 4px dotted #6c54e3;
    border-radius: 50%;
    z-index: 1;
    
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.profile-image .circle2{
    animation-name: dot;
}

@keyframes dot {
    to{
        rotate: 360deg;
    }
}

.top-section .profile-image img{
    height: 165px;
    width: 165px;
    border: 10px double #6c54e3;
    border-radius: 50%;
    margin: 25px 0px 0px 60px;
    z-index: 10;
}


.profile-image img{
    animation-name: profile;
}

@keyframes profile{
    to{
        rotate: 360deg;
    }
}

h2{
    margin: 0%;
    color:  rgb(36, 36, 36);
    font-size: 18px;
}

h5{
    margin: 0%;
    font-size: 10px;
    color: rgb(122, 122, 122);
    text-transform: uppercase;
}

h6{
    margin: 0%;
    font-size: 8px;
    color: rgb(110, 110, 110);
    margin-top: 3px;
}



/* <=== Left Bottom  Section ===> */


.left-section .bottom-section{
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: 54%;
}

/* <=== List Icon Section ===> */


#list-icon{
    margin-right: 10px;
    height: 15px;
    width: 15px;
    background-color: #6c54e3;
    margin-right: 12px;
}

/* <=== Education Section ===> */


.bottom-section .education{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.education h2{
    width: 85%;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #6c54e3;
    color:#ffffff;
    padding: 5px;
    padding-right: 25px;
    box-sizing: border-box;
    box-shadow: 2px 1px 8px rgb(0, 0, 0, 0.2);

    text-align: end;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.education .education-div1,
           .education-div2,
           .education-div3,
           .education-div4{
            
    width: 85%;
    margin: 10px 0px;
    box-sizing: border-box;
    display: flex;
}

.education .education-div1 .left,
           .education-div2 .left,
           .education-div3 .left,
           .education-div4 .left{
            
    width: 40%;
    margin-left: 25px;
    margin-right: 5px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
}

.education .education-div1 .right,
           .education-div2 .right,
           .education-div3 .right,
           .education-div4 .right{
            
    width: 60%;
    margin-left: 5px;
    box-sizing: border-box;
}

.education .left h4{
    margin: 0%;
    font-size: 12px;
    color: rgb(110, 110, 110);
    margin-bottom: 3px;
}

.education .left h5{
    margin: 0%;
    font-size: 10px;
    color: rgb(122, 122, 122);
    text-transform: uppercase;
}


/* <=== Experience Section ===> */


.bottom-section .experience{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.experience h2{
    width: 85%;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #6c54e3;
    color:#ffffff;
    padding: 5px;
    padding-right: 25px;
    box-sizing: border-box;
    box-shadow: 2px 1px 8px rgb(0, 0, 0, 0.2);

    text-align: end;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience .experience-div1,
           .experience-div2,
           .experience-div3,
           .experience-div4{
            
    width: 85%;
    margin: 10px 0px;
    box-sizing: border-box;
    display: flex;
}

.experience .experience-div1 .left,
           .experience-div2 .left,
           .experience-div3 .left,
           .experience-div4 .left{
            
    width: 40%;
    margin-left: 25px;
    margin-right: 5px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
}

.experience .experience-div1 .right,
           .experience-div2 .right,
           .experience-div3 .right,
           .experience-div4 .right{
            
    width: 60%;
    margin-left: 5px;
    box-sizing: border-box;
}


.experience .left h4{
    margin: 0%;
    font-size: 12px;
    color: rgb(110, 110, 110);
    margin-bottom: 3px;
}

.experience .left h5{
    margin: 0%;
    font-size: 10px;
    color: rgb(122, 122, 122);
    text-transform: uppercase;
}


/* <=== Left Footer Section ===> */


.bottom-section .footer{
    margin-top: 8px;
    height: 22px;
    background-color: #6c54e3;
}


/* <=== Right Section ===> */

.container .wrapper .right-section{
    box-sizing: border-box;
    height: 100%;
    width: 35%;
    background-color: rgb(36, 36, 36);
    box-shadow: -3px 0px 10px rgb(0, 0, 0, 0.5);

    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.right-section .contact h3{
    text-transform: uppercase;
    border: 2px solid #6c54e3;
    padding: 10px;
    font-weight: 400;
    text-align: center;
    margin: 0px 30px;
    margin-top: 85px;
    margin-bottom: 30px;
    color: white;
}

.contact a{
    text-decoration: none;
}

.contact a h3:hover{
    color: #ff9d01;
    background-color: white;
}

.contact .contact-info{
    margin: 0px 30px;
    margin-top: 15px;
    display: flex;
}

.contact-info .left{
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-left: 8px;
}

.contact-info .left .location-icon{
    height: 20px;
    width: 20px;
    background-color: #6c54e3;
}

.contact-info .right h5{
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-info .right h6{
    color: rgb(228, 228, 228);
    font-weight: 500;
    letter-spacing: 1px;
    padding-left: 0.5px;
}

.contact-info #phone{
    letter-spacing: 2.5px;
}


/* <=== Pro Skills Section ===> */


.right-section .pro-skill h3{
    text-transform: uppercase;
    border: 2px solid #6c54e3;
    padding: 10px;
    font-weight: 400;
    text-align: center;
    margin: 0px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: white;
}

.pro-skill a{
    text-decoration: none;
}

.pro-skill a h3:hover{
    color: #ff9d01;
    background-color: white;
}

.right-section .pro-skill{
    margin-bottom: 10px;
}

.pro-skill .skill-bar{
    margin: 15px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}


.skill-bar label{
    color:  white;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
}

.skill-bar .progress-bar{
    height: 11px;
    width: auto;
    margin-top: 5px;
    border: 1px solid #6c54e3;
}


/* <=== Progress Bar Animation ===> */


.progress-bar div{
    height: 100%;
    width: 0%;
    background-color: #6c54e3;

    animation-duration: 2s;
    animation-timing-function: linear;
    animation-fill-mode: both;
}

.progress-bar .html{
    animation-name: html;
}

@keyframes html{
    to{
        width: 90%;
    }
}

.progress-bar .css{
    animation-name: css;
}

@keyframes css{
    to{
        width: 65%;
    }
}

.progress-bar .php{
    animation-name: php;
}

@keyframes php{
    to{
        width: 78%;
    }
}

.progress-bar .java{
    animation-name: java;
}

@keyframes java{
    to{
        width: 50%;
    }
}


footer{
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    display: flex;
    flex-direction: column;
}

footer .footer-container{
    height: auto;
    margin: auto;
    margin-bottom: 22px;
}

.footer-container .social-icon{
    display: flex;
}

.footer-container  .social-icon div{
    height: 30px;
    width: 30px;
    margin: 10px;
    margin-top: 14px;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 5px;
    box-sizing: border-box;

    fill: rgb(36, 36, 36);
}

.social-icon div:hover{
    background-color: #6c54e3;
    fill: white;
    border: 1px solid white;
    box-shadow: 2px 2px 10px hsl(0, 0%, 100%, 0.3);
}

.social-icon div a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon div a svg{
    height: 22px;
    width: 22px;  
}

.footer-container hr{
    color: white;
}








/*<=== Background Animation ===>*/

.animation {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #04fafd,  #119dff,  #030423);
    position: absolute;
}
.animation h1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    font-family: sans-serif;
    letter-spacing: 1px;
    word-spacing: 2px;
    color: #fff;
    font-size: 40px;
    font-weight: 888;
    text-transform: uppercase;
  }
.animation div {
    height: 60px;
    width: 60px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: 4s linear infinite;
}
div .dot {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 20%;
    right: 20%;
}
.animation div:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.animation div:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: animate 10s linear infinite;
}
.animation div:nth-child(3) {
    top: 40%;
    left: 40%;
    animation: animate 3s linear infinite;
}
.animation div:nth-child(4) {
    top: 66%;
    left: 30%;
    animation: animate 7s linear infinite;
}
.animation div:nth-child(5) {
    top: 90%;
    left: 10%;
    animation: animate 9s linear infinite;
}
.animation div:nth-child(6) {
    top: 30%;
    left: 60%;
    animation: animate 5s linear infinite;
}
.animation div:nth-child(7) {
    top: 70%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.animation div:nth-child(8) {
    top: 75%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.animation div:nth-child(9) {
    top: 50%;
    left: 50%;
    animation: animate 6s linear infinite;
}
.animation div:nth-child(10) {
    top: 45%;
    left: 20%;
    animation: animate 10s linear infinite;
}
.animation div:nth-child(11) {
    top: 10%;
    left: 90%;
    animation: animate 9s linear infinite;
}
.animation div:nth-child(12) {
    top: 20%;
    left: 70%;
    animation: animate 7s linear infinite;
}
.animation div:nth-child(13) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}
.animation div:nth-child(14) {
    top: 60%;
    left: 5%;
    animation: animate 6s linear infinite;
}
.animation div:nth-child(15) {
    top: 90%;
    left: 80%;
    animation: animate 9s linear infinite;
}
@keyframes animate {
    0% {
      transform: scale(0) translateY(0) rotate(70deg);
    }
    100% {
      transform: scale(1.3) translateY(-100px) rotate(360deg);
    }
}