@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* html {
    overflow-x: hidden;
} */

body {
    background-color: rgb(4, 4, 50);
    /* overflow-x: hidden; */
}

.navbar {
    box-shadow: 1px 1.732px 2px 0 rgb(40 40 40 / 5%);
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgb(4, 4, 50);
}

.pb_100 {
    padding-bottom: 100px;
}

.stck {
    position: -webkit-sticky;
    position: sticky;
    top: 300px;
}

h1 {
    color: #fff;
    font-weight: 900;
}

p {
    color: #ddd;
}

.navbar-brand {
    font-weight: 500;
    color: #fff !important;
}

.nav-link {
    font-weight: 500;
    color: #fff !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: #0ef !important;
}

.banner {
    padding: 100px 0;
}

.banner_left {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.banner_left h1 {
    line-height: 0.7;
    font-weight: 900;
    color: #fff;
}

.banner_left h3 span {
    color: #0ef;
    font-weight: 700;
}

.banner_left p {
    margin-top: 15px;
}

.banner_left .social {
    margin-top: 15px;
}

.banner_left .social a {
    color: #0ef;
    border: 1px solid #0ef;
    font-size: 25px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.banner_left .social a:hover {
    color: #000;
    background-color: #0ef;
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan;
}

.btn {
    background-color: #0ef;
    color: #111;
    border-radius: 30px;
    margin-top: 50px;
    font-weight: 600;
    padding: 8px 30px;
    box-shadow: 0 0 5px cyan, 0 0 5px cyan, 0 0 5px cyan, 0 0 10px cyan;
}

.btn:hover {
    background-color: #fff;
    color: #111;
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan;
}

.banner_right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_right img {
    height: 500px;
    width: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan;
}

.about_left {
    display: flex;
    align-items: center;
}

.about_left img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 5px cyan, 0 0 13px cyan, 0 0 25px cyan, 0 0 50px cyan;
}

.title h1 {
    margin: 100px 0 50px 0;
    text-align: center;
}

.title h1 span {
    color: #0ef;
}

.about p {
    text-align: justify;
}

.service_card_title {
    /* display: none; */
    position: sticky;
    top: 120px;
    width: 100%;
}

.fade_out_div{
    transition: 0.6s;
    opacity: 0.1;
}

.service_div_main {
    position: relative;
    width: 100vw;
    height: 1800px;
}

.service_card_main {
    display: flex;
    position: fixed;
    top: 200px;
    height: 100%;
    margin-left: 2500px;
}

.service_card_main {
    transition: transform 0.1s linear;
    transition: 0.1s;
}

.service_card {
    width: 380px;
    height: 370px;
    background-color: transparent;
    padding: 40px;
    font-size: 13px;
    font-weight: 13px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s transform 0.5s;
    box-shadow: 1px 1px 20px #012290f7, 1px 1px 40px #0053b8f7;
    margin: 50px;
    transition: 0.5s;
}

.service_card:hover {
    transform: translateY(-15px);
}

.service_card i {
    font-size: 30px;
    color: #0ef;
}

.service_card h3 {
    font-size: 30px;
    margin: 30px 0 20px 0;
    font-weight: 700;

}

.service_card .btn {
    margin-top: 20px;
    font-weight: 500;
    font-size: 14px;
}

.skills_sec {
    color: #fff;
}

.skills_sec h4 {
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 10px;
    font-weight: 600;
    margin-bottom: 50px;
}

.skills_sec .bar {
    font-size: 24px;
    margin-top: 20px;
}

.skills_sec .technical_bars .progress_line {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 5px;
    background-color: #000000;
}


.skills_sec .technical_bars .progress_line span {
    height: 100%;
    background-color: #0ef;
    position: absolute;
    border-radius: 10px;
}



.skills_sec .technical_bars .progress_line.html span {
    width: 90%;
    animation: progressHtml 6s;
}

@keyframes progressHtml {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 90%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.css span {
    width: 70%;
    animation: progressCss 6s;
}

@keyframes progressCss {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 70%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.javascript span {
    width: 50%;
    animation: progressJavascript 6s;
}

@keyframes progressJavascript {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 50%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.react span {
    width: 30%;
    animation: progressReact 6s;
}

@keyframes progressReact {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 30%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.php span {
    width: 40%;
    animation: progressPhp 6s;
}

@keyframes progressPhp {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 40%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.node span {
    width: 30%;
    animation: progressNode 6s;
}

@keyframes progressNode {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 30%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.database span {
    width: 60%;
    animation: progressDatabase 6s;
}

@keyframes progressDatabase {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 60%;
        background-color: #0ef;
    }
}

.skills_sec .technical_bars .progress_line.mongodb span {
    width: 20%;
    animation: progressMongodb 6s;
}

@keyframes progressMongodb {
    0% {
        width: 0%;
        background-color: #0ef;
    }

    100% {
        width: 20%;
        background-color: #0ef;
    }
}

.professional_row {
    margin-top: 50px;
}

.radial_bars {
    position: relative;
    text-align: center;
}

.professional_row .radial_bars svg {
    height: 100px;
    position: relative;
}


.radial_bars .persentage {
    color: #0ef;
    position: absolute;
    left: 45%;
    top: 33%;
}

.project{
    height: 3500px;
    position: relative;
}

.main_pro_card{
    height: 3400px;
}

.project .title{
    position: sticky;
    top: 150px;
}

.pro_card {
    position: sticky;
    top: 300px;
    transition: 1s;
    margin-top: 100px;
    border-radius: 10px;
}

.pro_card img {
    border-radius: 10px;
    box-shadow: 0 0 5px cyan, 0 0 5px cyan, 0 0 15px cyan, 0 0 10px cyan;
}

.pro_card .btn {
    margin-top: 10px;
    padding: 5px 20px;
}

.pro_card_top {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    display: none;
    padding: 20px;
    border-radius: 10px;
}

.pro_card:hover .pro_card_top {
    cursor: pointer;
    display: flex;
}

footer {
    border: 2px solid #ddd;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
}

.float {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 999999;
}

@media(max-width: 768px) {
    .banner_right img {
        margin-top: 50px;
        width: auto;
    }
    .navbar{
        padding: 10px 0;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(100);
    }

    .banner {
        padding: 50px 0 0 0;
    }

    .about_left img {
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .service_card {
        margin-top: 30px;
    }

    .pro_card {
        margin-top: 30px;
    }

    .radial_bars .persentage {
        color: #0ef;
        position: absolute;
        left: 47%;
        top: 30%;
    }

    .project{
        height: 2500px;
        position: relative;
    }
    
    .main_pro_card{
        height: 2466px;
    }
    
    .pro_card {
        top: 200px;
        margin-top: 100px;
    }

    .project .title{
        position: sticky;
        top: 100px;
    }
    
}



/* radius bar */
section.svg-container .text {
    margin-top: 10px;
    text-align: center;
}

svg.radial-progress {
    height: auto;
    max-width: 150px;
    padding: 0;
    transform: rotate(-90deg);
    width: 100%;
    background-image: linear-gradient(-225deg, #FF057C 0%, #8D0B93 50%, #321575 100%);
    border-radius: 50%;
}

section.svg-container svg.radial-progress:nth-child(even) {
    margin: 0 15px;
}

svg.radial-progress circle {
    fill: transparent;
    stroke: #fff;
}

svg.radial-progress circle.bar-static {
    stroke: #fafafa !important;
}

svg.radial-progress circle.bar--animated {
    stroke-dasharray: 219.91148575129;
    stroke: #0ef;
    stroke-dashoffset: 219.91148575129;
    stroke-width: 4px;
    stroke-linecap: round;
}

svg.radial-progress text {
    fill: #0ef;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    text-anchor: middle;
    text-shadow: 0 0 5px #0000007a;
}

/*For CodePen*/

section.svg-container {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.devider {
    font-size: 50px;
    padding: 20px;
    min-height: 11vh;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-225deg, #FF057C 0%, #FF057C 40%, #321575 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.devider:nth-last-of-type(2) {
    background-image: linear-gradient(260deg, #ff0300, #ffc900),
        linear-gradient(-225deg, #ff0300 0%, #ffc900 100%);
}

section.svg-container:nth-last-of-type(1) svg.radial-progress {
    background: #111;
}

section.svg-container:nth-last-of-type(0) svg.radial-progress {
    background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);
}