@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Source+Code+Pro:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

/* width */
::-webkit-scrollbar {
    display: none;
}

.pri-txt-gredient {
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pri-gredient {
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);

}

.sec-gredient {
    background-image: linear-gradient(141deg, #adf1e07f, #8075ff7f 28%, #ff71717f 98%);

}

@media (prefers-color-scheme: light) {
    :root {
        --pri-bg: #fff;
        --sec-bg: rgba(0, 0, 0, 0.05);
        --sec-hover: rgba(0, 0, 0, 0.1);
        --font-clr: #000000;
        --sec-font-clr: #3a3a3a;
        --primary-anim: .3s;
        --font: 'Poppins', sans-serif;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --pri-bg: #000000;
        --sec-bg: rgba(255, 255, 255, 0.1);
        --sec-hover: rgba(255, 255, 255, 0.245);
        --font-clr: #ffffff;
        --sec-font-clr: rgb(201, 201, 201);
        --primary-anim: .3s;
        --font: 'Poppins', sans-serif;
    }
}


* {
    margin: 0px;
    padding: 0px;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;

}

html {
    background-color: #00000000;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--font-clr);
    background-color: var(--pri-bg);
    transition: var(--primary-anim);

}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ff000000;
}

.contact-btn {
    font-family: inherit;
    font-size: 25px;
    font-weight: 300;
    background: var(--sec-bg);
    color: var(--font-clr);
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;

}



.contact-btn span {
    display: block;
    padding: 5px 10px;
    margin-left: 0.5em;
    transition: all 0.3s ease-in-out;
}

.contact-btn svg {
    transform: rotate(1deg) scale(1.3);
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.contact-btn:hover .svg-wrapper {

    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.contact-btn:hover svg {
    transform: translateX(3em) rotate(45deg) scale(2);

}

.contact-btn:active svg {
    transform: translateX(10em) rotate(45deg) scale(.5);
}

.contact-btn:hover span {
    transform: translateX(9em);

}

.contact-btn:active {
    transform: scale(0.95);
}

.contact-btn:hover {
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);
}


@keyframes fly-1 {
    from {
        transform: translateY(0.3em);
    }

    to {
        transform: translateY(-0.3em);
    }
}

.contact-btn {}

section {}



/* PARTICALSS */
.particals {
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50%;

}

.p1 {
    background-color: #8175ff98;
    left: 20vw;
    top: 40vh;
    height: 50px;
    width: 50px;
}

.p2 {
    background-color: #adf1e07f;
    left: 70vw;
    top: 14vh;
    height: 45px;
    width: 45px;
}

.p3 {
    background-color: #ff7171a4;
    left: 33vw;
    top: 10vh;
    height: 33px;
    width: 33px;
}

.p4 {
    background-color: #adf1e07f;
    left: 11vw;
    top: 5vh;
    height: 20px;
    width: 20px;
}

.p5 {
    background-color: #8175ff98;
    right: 13vw;
    top: 10vh;
    height: 25px;
    width: 25px;
}

.p6 {
    background-color: #ff7171a4;
    right: 30vw;
    top: 40vh;
    height: 27px;
    width: 27px;
}

.p7 {
    background-color: #adf1e07f;
    left: 17vw;
    top: 17vh;
    height: 35px;
    width: 35px;
}

.p8 {
    background-color: #8175ff78;
    right: 20vw;
    top: 30vh;
    height: 25px;
    width: 25px;
}

/* ABOUT SECTION */
#about {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
    margin: 0px;
    justify-content: center;
    height: 100vh;

}

.contactMe-cont {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5vh 0vh;

}

.hero-title-container {
    margin: 0% 25%;
    max-width: max-content;
    min-width: min-content;
}

.name-title {
    font-size: 45px;
    padding: 10px 0px;

}

.loc-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 500;

}

.location-icon {
    font-weight: 600;
    font-size: 25px;
}

.name-dis {
    font-size: 15px;
    min-width: 350px;
    font-weight: 400;
}



.download-button {
    position: relative;
    border-width: 0;
    color: var(--font-clr);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    background-color: var(--sec-bg);
    z-index: 1;
}

.download-button .docs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    z-index: 1;
    background-color: var(--sec-bg);
    transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
}

.download-button:hover {}

.download {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min-content;
    margin: 0 auto;
    z-index: -1;
    border-radius: 100px;
    transform: translateY(0%);
    transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
}

.download-button:hover .download {
    transform: translateX(-300%);
    opacity: 1;
}

.download svg polyline,
.download svg line {
    animation: docs 1s infinite;
}

@keyframes docs {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-15%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* SOCIAL section */
.social_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;

}

.social_container a {
    text-decoration: none;
    color: var(--font-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    padding: 20px;
    transition: var(--primary-anim);
    border: none;
    background-color: var(--sec-bg);
    border-radius: 50%;
    transform: translateX(-2px);
    transform: translateY(-2px);
    box-shadow: var(--button-sdw);
}

.social_container a:hover {
    background-color: var(--sec-hover);
}

.social_container a:active {
    transform: translateX(2px);
    transform: translateY(2px);
    box-shadow: 0px 0px 0px 0px;
    transition: var(--primary-anim);
}



.hero-img-container {
    width: 100%;
}

.hero-img-container img {
    border-radius: 50%;
    height: 1vw;
    min-width: 150px;
    min-height: 250px;
}

.hero-btns {
    width: 100%;
    padding: 30px 0px;
}

.lets-talk-btn {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--font-clr);
    cursor: pointer;
    background-color: var(--sec-bg);
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: var(--primary-anim);
    transform: translateX(-2px);
    transform: translateY(-2px);
    box-shadow: var(--button-sdw);
}

.lets-talk-btn:hover {
    transition: var(--primary-anim);
    background-color: var(--sec-hover);
}

.lets-talk-btn:active {
    box-shadow: 0px 0px 0px 0px;
    transform: translateX(2px);
    transform: translateY(2px);
}



.section-title {
    display: flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 10px 0px;
    font-size: 45px;

}

/* Skills Section */

#skills {
    display: flex;
    flex-wrap: wrap;
    margin: 2vw 10vw;
    flex-grow: initial;
    gap: 10px;
    max-width: 600px;
}

#skills li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    flex-grow: 1;
    gap: 10px;
    border-radius: 25px;
    align-items: center;
    background-color: var(--sec-bg);

}

#skills li:hover {
    background-image: linear-gradient(141deg, #adf1e09d, #786dee99 28%, #c955558d 98%);
}

#skills li img {
    width: 25px;


}

#skills li i {
    font-size: 25px;
    padding: 5px;
    color: var(--font-clr);
}

/* Project Section */

#projects {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

.project-card {
    min-width: 350px;
    max-width: 30vw;
    display: flex;
    flex-direction: column;

    align-items: center;
    width: min-content;
    padding: 20px;
    background-color: var(--sec-bg);
    border-radius: 20px;
    transition: .4s;
}

.project-img {
    text-decoration: none;
    width: 100%;
    border-radius: 15px;
    border: none;
    transition: var(--primary-anim);
}

.project-title-cont {
    padding: 10px;

}

.project-title {
    width: 100%;
    font-size: 25px;
    color: var(--font-clr);
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    list-style: none;
    font-size: 13px;
    gap: 6px;
}

.project-tech-stack li {
    background-color: var(--sec-bg);
    padding: 1px 6px;
    border-radius: 3px;
    color: var(--sec-font-clr);
    font-weight: 600;
}

.project-dis {
    width: 100%;
    font-size: 14px;
    color: var(--sec-font-clr);
    padding: 10px 0px;
}

.project-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;

}

.project-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 40%;
}

a {
    text-decoration: none;
    padding: 0;
}


.info-btn {
    color: var(--font-clr);
    font-size: 30px;
    background-color: transparent;

    border: none;
    transition: var(--primary-anim);
    transform: translateX(-2px);
    transform: translateY(-2px);
    transition: .5s;
}

.info-btn:hover {
    background-image: linear-gradient(141deg, #adf1e0, #b4adff 48%, #ff7171 98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.info-btn:active {
    box-shadow: 0px 0px 0px 0px;
    transform: translateX(2px);
    transform: translateY(2px);
}


@media only screen and (max-width: 1024px) {
    #about {
        flex-direction: column-reverse;
    }

    .name-title {
        font-size: 40px;
    }

    .name-dis {
        font-size: 15px;

    }

    #skills {
        flex-wrap: wrap;
    }

    .skills-container {
        flex-wrap: wrap;
    }



}

@media only screen and (max-width: 600px) {

    #skills {
        flex-wrap: wrap;
    }

    nav {
        z-index: 10000;
        display: flex;
        flex-direction: row;
        bottom: 0px;
        position: fixed;
        justify-content: center;
        align-items: center;
        width: 100vw;
        top: 93%
    }

    #secal {
        height: 50px;
    }


}