/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --header-height: 3.5rem;

    /* colors */
    --color-header-bg: #333;
    --color-footer-bg: #222;
    --color-body-bg: linear-gradient(45deg, #444 0%, #222 100%);
    --color-bg-1:  linear-gradient(45deg, #444444d0 0%, #222222d5 100%); 
    --color-bg-2: linear-gradient(45deg, #222222d5 0%, #444444d0 100%);
    --color-1: #ff4000;
    --color-2: #47c4e4;
    --color-border: #23bde479;
    --color-outline: #616060;
    --color-white: #fff;
    --color-gradient-1: linear-gradient(45deg, var(--color-1) 0%, var(--color-2) 100%);
    --color-gradient-2: linear-gradient(45deg, var(--color-2) 0%, var(--color-1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-white);
    background: var(--color-body-bg);
}

/* common class */
.container {
    max-width: 1119.98px;
    margin-inline: 1.5rem;
}

.main {
    overflow: hidden;
}

/* blob */
.blob-1,
.blob-2,
.blob-3,
.blob-4 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(6rem);
}

.blob-1 {
    top: 0;
    left: 0;
    background: var(--color-1);
}

.blob-2 {
    bottom: 0;
    right: 0;
    background: var(--color-2);
}

.blob-3 {
    top: 0;
    right: 0;
    background: var(--color-1);
}

.blob-4 {
    bottom: 0;
    left: 0;
    background: var(--color-2);
}

/* section */
.section {
    min-height: auto;
    padding-block: 3.5rem;
    padding-inline: 6%;
}

.section__heading {
    color: var(--color-white);
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 0.96rem + 3.19vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.75rem;
    text-align: center;
}

.section__heading span {
    font-weight: 700;
    background: var(--color-gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* flex */
.flex {
    display: flex;
    align-items: center;
}

/* paragraph */
.para__style {
    color: #ffffffa2;
    font-size: 0.7rem;
    font-size: clamp(0.7rem, 0.63rem + 0.43vw, 0.9rem);
    font-weight: 300;
    line-height: 1.3;
}

/*! social */
.social {
    align-self: start;
    margin-top: 4rem;
    column-gap: 1rem;
}

.social a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: .2rem solid var(--color-2);
    /* outline: 0.2rem solid var(--color-outline); */
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

.social a i {
    color: var(--color-2);
    transition: 0.5s;
}

.social a:hover i {
    color: var(--color-white);
}

.social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: 0;
    background: var(--color-1);
    z-index: -1;
    transition: 0.5s;
}

.social a:hover::before {
    height: 100%;
}

/*! button */
.button__box {
    position: relative;
    justify-content: space-between;
    width: 17rem;
}

.btn {
    position: relative;
    justify-content: center;
    width: 8rem;
    height: 2.5rem;
    color: var(--color-white);
    font-size: 0.9rem;
    font-size: clamp(0.9rem, 0.83rem + 0.43vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 1px;
    background: var(--color-gradient-2);
    border: .2rem solid var(--color-border);
    border-radius: 0.5rem;
    /* outline: .2rem solid var(--color-outline); */
    z-index: 1;
    overflow: hidden;
    transition: background 0.5s ease;
}

.btn:hover {
    background: var(--color-gradient-1);
}

.button__box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 100%;
    background: var(--color-1);
    z-index: -1;
    transition: 0.5s;
}

/* home button */
.button__box .btn:hover::before {
    width: 100%;
}

.button__box .home__btn:nth-child(2) {
    background: transparent;
}

/* about button */
.button__box.btns {
    justify-content: center;
}

.button__box.btns a::before {
    background: green;
}

/* contact button */
.contact__button-box {
    display: inline-flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-btn {
    cursor: pointer;
}


/** scroll sections active link */
.active {
    text-decoration: underline 0.25rem var(--color-1);
    text-underline-offset: 0.5rem;
}


/*=== HEADER ===*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-header-bg);
    z-index: 1000;
    transition: 0.3s;
}

/** Change background header */
.header.sticky {
    background: var(--color-white);
    box-shadow: #ff400041 0px 20px 30px -10px;
}

/* nav */
.nav {
    height: var(--header-height);
    justify-content: space-between;
}


.nav__logo img {
    width: clamp(1.75rem, 1.5rem + 1.3vw, 2.5rem);
}

.nav__logo p {
    font-size: 0.8rem;
    font-size: clamp(0.8rem, 0.69rem + 0.69vw, 1.2rem);
    font-weight: 700;
    color: var(--color-1);
}

.nav__logo p span {
    font-weight: 300;
    color: var(--color-2);
}

/* nav menu for mobile device */
@media screen and (max-width: 767.98px) {
    .nav__menu {
        width: 100%;
        position: fixed;
        left: 0;
        /* top: 0; */
        top: -100%;
        padding-block: 4rem;
        background: var(--color-header-bg);
        transition: top 0.4s;
    }
}

.nav__list {
    flex-direction: column;
    row-gap: 2rem;
}

.nav__close,
.theme__button,
.nav__toggle {
    color: var(--color-2);
}

.nav__link {
    font-size: 0.9rem;
    font-size: clamp(0.9rem, 0.83rem + 0.43vw, 1.1rem);
    font-weight: 400;
    background: var(--color-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: color 0.4s, text-decoration 0.4s;
}

.nav__link:hover {
    color: var(--color-1);
    text-decoration: underline 0.25rem var(--color-1);
    text-underline-offset: 0.5rem;
}

.nav__close,
.nav__toggle {
    display: flex;
}

.nav__close i,
.theme__button,
.nav__toggle i {
    font-size: 1rem;
    font-size: clamp(1rem, 0.86rem + 0.87vw, 1.5rem);
    cursor: pointer;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav__buttons {
    column-gap: 1rem;
}

/** show menu */
.show-menu {
    top: 0;
}


/*=== HOME ===*/
.home {
    min-height: 100vh;
    margin-top: 3.5rem;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg-1), url('/aseets/img/bg-img.webp'); background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    position: relative;
}

/* home content */
.home__content {
    max-width: 38rem;
    align-self: flex-start;
    z-index: 99;
}

.home__content h1 {
    color: var(--color-white);
    font-size: 1.2rem;
    font-size: clamp(1.2rem, 0.55rem + 3.83vw, 3rem);
    line-height: 1.3;
}

.home__content h1 span {
    background: var(--color-gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* text animate */
.home__content .text__animate {
    position: relative;
    display: inline-block;
    width: auto;
}

.home__content .text__animate h3 {
    font-size: 1rem;
    font-size: clamp(0.9rem, 0.72rem + 1.062vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 1px;

    color: transparent;
    -webkit-text-stroke: .4px var(--color-2);

    background-image: linear-gradient(var(--color-1), var(--color-1));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -10rem 0;

    animation: homeBgText 6s linear infinite;
    animation-delay: 1s;
}

.home__content .text__animate h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-right: 1px solid var(--color-white);
    z-index: -1;

    animation: homeCursorText 6s linear infinite;
    animation-delay: 1s;
}

/* keyframes animation */
@keyframes homeBgText {
    0%, 10%, 100% {
        background-position: -10rem 0;
    }
    65%, 85% {
        background-position: 0 0;
    }
}

@keyframes homeCursorText {
    0%, 10%, 100% {
        width: 0;
    }
    65%, 78%, 85% {
        width: 100%;
        opacity: 1;
    }
    75%, 81% {
        opacity: 0;
    }
}


.home__content p {
    margin: 1.5rem 0 3rem;
}

/* home social */
.home__social a {
    width: 40px;
    height: 40px;
}

.home__social a i {
    font-size: 1.25rem;
}

/* home image overlay */
.home__img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    transition: 3s;
}

.home__img-overlay:hover {
    background: var(--color-1);
    opacity: 0.2;
}


/*=== ABOUT SECTION ===*/
.about {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--color-bg-2);
    position: relative;
}


/* about image */
.about__image {
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    justify-content: center;
}

.about__image img {
    width: 90%;
    border-radius: 50%;
    border: .1rem solid var(--color-border);
    padding-top: 0.5rem;
    background: #222;
    /* outline: .2rem solid  var(--color-outline); */
}

.about__circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: 0.5rem solid var(--color-1);
    border-right: 0.1rem solid transparent;
    border-bottom: 0.5rem solid var(--color-2);
    border-left: 0.1rem solid transparent;

    animation: aboutSpinner 8s linear infinite;
}

/* about circle spin animation */
@keyframes aboutSpinner {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* about content */
.about__content {
    text-align: center;
}

.about__content h3 {
    font-size: 1.1rem;
    font-size: clamp(1.1rem, 0.92rem + 1.06vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.25rem;
    color: transparent;
    -webkit-text-stroke: .5px var(--color-1);
}

.about__content p {
    margin: 2rem 1rem 1rem;
}


/*=== EDUCATION SECTION ===*/
.education {
    justify-content: center;
    flex-direction: column;
    background: var(--color-bg-1);
    position: relative;
}

.education__row {
    flex-wrap: wrap;
    gap: 3rem;
}

.education__column {
    flex: 1 1 25rem;
}

.education__title {
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 1.16rem + 0.53vw, 1.5rem);
    letter-spacing: .2rem;
    color: var(--color-white);
    margin: 0 0 1rem 1.25rem;
    display: inline-block;
    background: var(--color-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.education__box {
    border-left: .1rem solid var(--color-border);
}

.education__content {
    position: relative;
    padding-left: 1.25rem;
}

.education__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -.625rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--color-2);
}

.education__content .content {
    position: relative;
    padding: 1rem;
    border: .1rem solid var(--color-border);
    border-radius: 0.5rem;
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.education__content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 100%;
    background: var(--color-2);
    z-index: -1;
    transition: 0.5s;
}

.education__content .content:hover::before {
    width: 100%;
}

.education__content .content .year {
    font-size: 0.8rem;
    font-size: clamp(0.8rem, 0.73rem + 0.43vw, 1rem);
    color: var(--color-2);
    margin-bottom: 0.3rem;
}

.education__content .content .year i {
    padding-right: 0.3rem;
}

.education__content .content h3 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    font-size: clamp(1rem, 0.91rem + 0.53vw, 1.25rem);
    background: var(--color-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.education__content .content p {
    padding-top: 0.3rem;
}


/*=== SKILL SECTION ===*/
.skills {
    background: var(--color-bg-2);
    position: relative;
}

.skills__row {
    flex-wrap: wrap;
    gap: 3rem;
}

.skills__column {
    flex: 1 1 25rem;
}

.skills__title {
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 1.16rem + 0.53vw, 1.5rem);
    letter-spacing: .2rem;
    margin: 0 0 1rem;
    display: inline-block;
    background: var(--color-gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.skills__content {
    position: relative;
    border: 2px solid var(--color-border);
    border-radius: 0.375rem;
    padding: 1rem 2rem;
    overflow: hidden;
    z-index: 1;
}

.skills__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: 0;
    background: var(--color-body-bg);
    z-index: -1;
    transition: 0.5s;
}

.skills__content:hover::before {
    height: 100%;
}

.skills__content .progress {
    padding-block: 0.625rem;
}

.skills__content .progress h3 {
    color: var(--color-2);
    font-size: 0.8rem;
    font-size: clamp(0.8rem, 0.7rem + 0.64vw, 1.1rem);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skills__content .progress h3 span {
    font-weight: 700;
    background: var(--color-gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.skills__content .progress .bar {
    height: 1.5em;
    border-radius: 0.375rem;
    border: 2px solid var(--color-border);
    padding: .3rem;
    margin: 0.5rem 0;
}

.skills__content .progress .bar span {
    display: block;
    height: 100%;
    border-radius: 0.25rem;
    background: var(--color-2);
}

.skills__column:nth-child(1) .skills__content .progress:nth-child(1) .bar span {
    width: 90%;
}

.skills__column:nth-child(1) .skills__content .progress:nth-child(2) .bar span {
    width: 80%;
}

.skills__column:nth-child(1) .skills__content .progress:nth-child(3) .bar span {
    width: 63%;
}

.skills__column:nth-child(1) .skills__content .progress:nth-child(4) .bar span {
    width: 70%;
}

.skills__column:nth-child(2) .skills__content .progress:nth-child(1) .bar span {
    width: 95%;
}

.skills__column:nth-child(2) .skills__content .progress:nth-child(2) .bar span {
    width: 67%;
}

.skills__column:nth-child(2) .skills__content .progress:nth-child(3) .bar span {
    width: 75%;
}

.skills__column:nth-child(2) .skills__content .progress:nth-child(4) .bar span {
    width: 60%;
}


/*=== CONTACT SECTION ===*/
.contact {
    background: var(--color-bg-1);
}

.contact__form {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.contact__input-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact__input-field {
    position: relative;
    width: 49%;
    margin: 0.5rem 0;
}

.contact__text-field {
    position: relative;
    margin: 0.5rem 0;
    display: flex;
}

.contact__input-field input,
.contact__text-field textarea {
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-size: clamp(0.75rem, 0.66rem + 0.53vw, 1rem);
    color: var(--color-white);
    background: transparent;
    border-radius: 0.375rem;
    border: 1px solid var(--color-border);
    caret-color: var(--color-2);
}

.contact__text-field textarea {
    resize: none;
}

::placeholder {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--color-white);
}

.contact__form .focus {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 100%;
    background: var(--color-1);
    border-radius: 0.375rem;
    z-index: -1;
    transition: 0.7s;
}

.contact__input-field input:focus~.focus,
.contact__input-field input:valid~.focus,
.contact__text-field textarea:focus~.focus,
.contact__text-field textarea:valid~.focus {
    width: 100%;
}


/*=== SCROLLUP===*/
.scrollup {
    width: 2rem;
    height: 2rem;
    position: fixed;
    right: 2rem;
    /* bottom: 3rem; */
    bottom: -50%;
    background: var(--color-body-bg);
    justify-content: center;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    box-shadow: 0 4px 8px var(--color-1);
    z-index: 10;
    transition: all .4s;
    
}

.scrollup a {
    position: relative;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 6px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.scrollup a i {
    /* font-size: 1.5rem; */
    color: var(--color-2);
    transition: 0.5s;
}

.scrollup a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: 0;
    background: var(--color-2);
    z-index: -1;
    transition: 0.5s;
}

.scrollup a:hover::before {
    height: 100%;
}



.scrollup a:hover i {
color: #000;
}
  
.scrollup:hover {
transform: translateY(-.25rem);
}
  
/* Show Scroll Up */
.show-scroll {
bottom: 3rem;
}


/*=== FOOTER ===*/
.footer {
    width: 100%;
    padding: 3rem 0 2rem;
    background: var(--color-footer-bg);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.footer__row {
    padding: 0 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer__col{
    flex-basis: 25%;
    padding: 10px;
}

.footer__col:nth-child(2),
.footer__col:nth-child(3){
    flex-basis: 15%;
}

.footer__logo{
    margin-bottom: 30px;
}

.footer__col h3{
    width: fit-content;
    margin-bottom: 35px;
    position: relative;
    font-size: 1rem;
    font-size: clamp(1rem, 0.93rem + 0.43vw, 1.25rem);
    background: var(--color-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.email__id{
    width: fit-content;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-2);
    margin: 15px 0;
    cursor: pointer;
    transition: 0.4s;
}

.phone__no {
    color: var(--color-1);
    font-size: 0.75rem;
    font-size: clamp(0.75rem, 0.68rem + 0.43vw, 1rem);
    font-weight: 400;
}

.email__id:hover {
    text-decoration: none;
    color: var(--color-1);
}

.footer__links li{
    margin-bottom: 0.75rem;
}

.footer__links li a{
    color: var(--color-2);
    font-weight: 300;
    transition: 0.4s;
}

.footer__links li a:hover{
    color: var(--color-1);
}

.footer__form{
    padding-bottom: 15px;
    justify-content: space-between;
    border-bottom: 1px solid #999;
    margin-bottom: 3rem;
}

.footer__form .mail__icon{
    font-size: 1.25rem;
    color: var(--color-1);
    margin-right: 10px;
    box-shadow: 0 4px 8px var(--color-2);
}

.footer__form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    caret-color: var(--color-1);
}

.footer__form input::placeholder {
    color: #999;
}

.footer__form button{
    background: transparent;
    border: 0;
    cursor: pointer;

}

.footer__form button .arrow__icon{
    font-size: 1.25rem;
    color: var(--color-1);
    box-shadow: 0 4px 8px var(--color-2);
}

.footer__social a {
    width: 30px;
    height: 30px;
}

.footer__social a i {
    font-size: 0.9rem;
}

/* *animated underline */
.footer__underline{
    width: 100%;
    height: 0.25rem;
    background: var(--color-1);
    border-radius: 3px;
    position: absolute;
    top: 32px;
    left: 0;
    overflow: hidden;
}

.footer__underline span{
    width: 0.75rem;
    height: 100%;
    background: var(--color-2);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}


/* footer bottom */
.footer__bottom {
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.footer__copyrights {
    padding: 0 6%;
    justify-content: space-between;
}

.footer__copyrights p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-white);
}

.footer__copyrights p a {
    color: var(--color-2);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    transition: 0.4s;
}

.footer__copyrights p a:hover {
    text-decoration: none;
    color: var(--color-1);
}



/*=== RESPONSIVE DESIGN ===*/
@media screen and (min-width: 1120px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }
}


@media screen and (min-width: 768px) {
    .nav {
        column-gap: 4rem;
    }

    .nav__menu {
        margin-left: auto;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 2rem;
    }

    .nav__close,
    .nav__toggle {
        display: none;
    }

    .home__content .text__animate h3 {
        font-weight: 600;
    }
}


@media screen and (max-width: 767.98px){
    .blob-1,
    .blob-2 {
        width: 15rem;
        height: 15rem;
        filter: blur(3.5rem);
    }

    .section {
        padding-block: 3rem;
    }

    .home {
        margin-top: 2.5rem;
        background-size: cover;
        background-position: center;
    }

    .home__content .text__animate h3 {
        font-weight: 500;
    }

    .home__content p {
        margin: 0.75rem 0 1.5rem;
    }

    .about__content h3 {
        letter-spacing: 2px;
    }

    .about {
        gap: 1.5rem;
    }
    
    .about__image {
        width: 17rem;
        height: 17rem;
    }
    
    .about__content p {
        margin: 1rem 0.75rem .5rem;
    }

    .contact__input-box {
        flex-direction: column;
    }

    .contact__input-field {
        width: 100%;
    }

    .scrollup {
        width: 1.5rem;
        height: 1.5rem;
        right: 1.25rem;
        box-shadow: 0 3px 6px var(--color-1);
    }

    .scrollup a {
        padding: 4px;
    }

    .show-scroll {
        bottom: 2rem;
    }

    .footer__row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__copyrights {
        flex-direction: column;
        justify-content: center;
        row-gap: 0.25rem;
    }
    
    .footer__copyrights p {
        font-size: 0.7rem;
    }
}


@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .blob-1,
    .blob-2 {
        width: 12rem;
        height: 12rem;
        filter: blur(2.5rem);
    }

    .section {
        padding-block: 2.5rem;
    }

    .section__heading {
        margin-bottom: 1rem;
    }

    .button__box {
        width: 13rem;
    }

    .btn {
        width: 6rem;
        height: 2rem;
    }

    .about__btn {
        width: 7rem;
    }

    .nav__close {
        right: 1rem;
    }

    .home {
        margin-top: 2rem;
    }

    .home__content {
        width: 100%;
    }

    .home__content h1 {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .home__content .text__animate h3 {
        font-weight: 500;
    }

    .home__content p {
        margin: 0.75rem 0 1.5rem;
        width: 80%;
    }

    .home__social a {
        width: 35px;
        height: 35px;
    }
    
    .home__social a i {
        font-size: 1rem;
    }

    .about {
        gap: 1rem;
    }
    
    .about__image {
        width: 12rem;
        height: 12rem;
    }

    .about__content h3 {
        letter-spacing: 1px;
    }
    
    .about__content p {
        margin: 1rem 0.5rem .5rem;
    }

    .education__title {
        letter-spacing: 0.1rem;
    }

    .education__content::before {
        left: -.375rem;
        width: 0.75rem;
        height: 0.75rem;
    }

    .education__content .content {
        padding: 0.75rem;
    }

    .skills__title {
        letter-spacing: 0.1rem;
    }

    .skills__content {
        border: 1px solid var(--color-border);
        padding: 0.5rem 1rem;
    }
    
    .skills__content .progress {
        padding-block: 0.3rem;
    }
    
    .skills__content .progress .bar {
        height: 1rem;
        border: 1px solid var(--color-border);
        padding: .2rem;
    }

    .scrollup {
        width: 1rem;
        height: 1rem;
        right: 0.75rem;
        box-shadow: 0 2px 4px var(--color-1);
    }

    .scrollup a {
        padding: 3px;
    }

    .scrollup a i {
        font-size: 1rem;
    }

    .show-scroll {
        bottom: 1.5rem;
    }

    .footer__row {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .footer__copyrights p {
        font-size: 0.6rem;
    }
}







