@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{

    --first-color: #0e2431;
    --second-color: #6a59d1;
    --third-color: #777;

    --hover-color: #614fd0;

    --body-bg-color: #fefefe;
    --card-bg-color: #fff;
    --model-bg-color: #fff;
    --bg-transparent-color: rgba(0, 0, 0, 0.1);
    --transparent-color-01: rgba(0, 0, 0, 0.1);
    --transparent-color-02: rgba(106, 89, 209, 0.1);
    --line-color: #d7d7d7;

    --color-filter: invert(1);

    --box-shadow: 0 0 20px rgb(0 0 0 / 10%);

    --small-font-size: 0.9rem;
    --normal-font-size: 1rem;

    --scroll-bar-color: #c5cadf;
    --scroll-thumb-color: #70768a;
    --scroll-thumb-hover-color: #454f6b;
    --primary-color: #6a59d1;
    --secondary-color: #8b7ce8;
    --accent-color: #ff6b9d;
    --text-dark: #0e2431;
    --text-light: #777;
    --bg-light: #fefefe;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    --icon-color: #0e2431;

}

.dark-theme{
    --first-color: #fff;
    --second-color: #6a59d1;
    --third-color: #a9afc3;

    --body-bg-color: #0e1b31;
    --card-bg-color: #132347;
    --model-bg-color: #102048;
    --bg-transparent-color: rgba(255, 255, 255, 0.1);
    --transparent-color-01: rgba(255, 255, 255, 0.1);
    --line-color: #454f6b;

    --color-filter: invert(0);

    --scroll-bar-color: #c1ceff;
    --scroll-thumb-color: #282f4e;
    --scroll-thumb-hover-color: #454f6b;
    --gradient-1: linear-gradient(135deg, #011ec5 0%, #370291 100%);
    --gradient-2: linear-gradient(135deg, #6405c9 0%, #c50344 100%);
    --icon-color: #fff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--body-bg-color);
    color: var(--first-color);
    margin: 2rem 0 0 0;
    transition: .5s ease;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

/*scroll to the top botton*/
.scrollToTop-btn{
    z-index: 99999;
    position: fixed;
    right: 0;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: var(--second-color);
    color: #fff;
    font-size: var(--small-font-size);
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    transition: .5s ease;
}

.scrollToTop-btn.active{
    opacity: 1;
    pointer-events: all;
    right: 20px;
}

/*light/dark theme button*/
.theme-btn{
    z-index: 99999;
    position: fixed;
    right: 0;
    top: 100px;
    background: var(--transparent-color-01);
    backdrop-filter: blur(20px);
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    border-radius: 5px 0 0 5px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.theme-btn .fa-sun, .theme-btn.sun .fa-moon{
    display: none;
}

.theme-btn.sun .fa-sun{
    display: block;
}

.theme-btn

::-webkit-scrollbar{
    width: 10px;
    background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb{
    background: var(--scroll-thumb-color);
    border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
    background: var(--scroll-thumb-hover-color);
}

/* navigation bar */
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    backdrop-filter: blur(20px);
    transition: .6s ease;
}

header.sticky{
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
}

.nav-bar{
    position: relative;
    height: calc(4rem + 1rem);
    max-width: 1250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    transition: .6s ease;
}

header.sticky .nav-bar{
    height: calc(2.5rem + 1rem);
}

.nav-bar .logo{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--first-color);
}

.nav-items a{
    color: var(--first-color);
    font-size: var(--normal-font-size);
    font-weight: 500;
}

.nav-items a.active{
    color: var(--second-color);
}

.nav-items a:not(:last-child){
    margin-right: 50px;
}

.nav-items a:hover{
    color: var(--second-color);
}

.nav-menu-btn{
    display: none;
}

/*home section*/

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    animation-delay: 0s;
}
.shape-3 {
    bottom: 10%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation-delay: 10s;
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

.home{
    position: relative;
    max-height: 1250px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 4rem;
    flex-direction: column;
}

.home .home-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home-container .media-icons{
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    
}

.home-container .media-icons a{
    font-size: 2em;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--icon-color);
}

.home-container .media-icons a:hover{
    transform: translateY(-5px) scale(1.1);
}

.home-container .info h2{
    font-size: 4rem;
    font-weight: 600;
    line-height: 70px;
}

.home-container .info h3{
    color: var(--third-color);
    font-feature-settings: 1.3rem;
    font-weight: 600;
    line-height: 50px;
}

.home-container .info p{
    color: var(--third-color);
    font-size: var(--normal-font-size);
    max-width: 500px;
}

.home-container .home-img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

.home-container .home-img img{
    width: 90%;
    transform: translate(0, 0);
}

.home .scroll-down{
    font-size: var(--normal-font-size);
    color: var(--first-color);
    font-weight: 500;
    margin-top: 20px;
}

.home .scroll-down i{
    color: var(--second-color);
    font-size: 1.2em;
    animation: arrow-down ease 2s infinite;
}

@keyframes arrow-down{
    0%{
        transform: translateY(0);
    }
    30%{
        transform: translateY(10px);
    }
}

/* Modern Reveal Animations */
.reveal {
  opacity: 0;
  transform-origin: center;
  will-change: opacity, transform;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-origin="left"] { 
  transform: translateX(-40px) scale(0.96);
  opacity: 0;
}

.reveal[data-origin="right"] { 
  transform: translateX(40px) scale(0.96);
  opacity: 0;
}

.reveal[data-origin="top"] { 
  transform: translateY(-40px) scale(0.97);
  opacity: 0;
}

.reveal[data-origin="bottom"] { 
  transform: translateY(40px) scale(0.97);
  opacity: 0;
}

.reveal[data-origin="scale"] { 
  transform: scale(0.9);
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition-duration: 0.01ms !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* btn style */
.btn{
    position: relative;
    display: inline-block;
    padding: 18px 35px;
    font-size:  var(--normal-font-size);
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(106, 89, 209, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover{
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 12px 32px rgba(106, 89, 209, 0.4);
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn:hover i {
    transform: translateX(4px);
}

/*about section */
.section{
    position: relative;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 4rem 2rem 3rem;
}

.sub-section{
    position: relative;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 0;
}

.section-title-01{
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(to top, transparent 0%, var(--first-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
}

.section-title-02{
    font-size: 2.5rem;
    font-weight: 700;
    transform: translateY(-80px);
}

.section-title-02::before{
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    right: 0;
    bottom: 0;
    background: var(--second-color);
}

.container{
    position: relative;
    flex-direction: column;
}

.about .container .content{
    column-gap: 40px;
    width: 100%;
}

.about-img {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
}

.about-img img{
    max-width: 100%;
    min-width: 350px;
    border-radius: 10px;
    margin-bottom: 150px;
}

.about-info {
    flex: 1 1 55%;
}

.about-info .description{
    max-width: 100%;
}

.about-info .description h3{
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-info .description h4{
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-info .description h4 span{
    color: var(--second-color);
}

.about-info .description p{
    color: var(--third-color);
    font-size: var(--normal-font-size);
    margin-bottom: 15px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--line-color);
}

/* Interests/Skills Tags */
.interests-container {
    margin-bottom: 35px;
}
.interests-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}
.interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.interest-tag {
    padding: 10px 20px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}
.interest-tag:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(106, 89, 209, 0.3);
}

.about-info .professional-list{
    display: flex;
    column-gap: 100px;
    animation: fadeInUp 1s ease-out 1s both;
}

.about-info .professional-list .list-item{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
}

.about-info .professional-list .list-item h3{
    font-size: 2.5rem;
    font-weight: 700;
}

.about-info .professional-list .list-item h3 span{
    color: var(--third-color);
    font-size: var(--small-font-size);
}

.stat-number{
    gap: 4px;
    display: inline-flex;
    align-items: baseline;
}

.number-value{
    display: inline-block;
    min-width: 2ch; /* Reserve space for 2 digits */
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/*skills section*/
.skills .container .content{
    width: 100%;
}

.skills-description{
    max-width: 1250px;
    margin-bottom: 50px;
}

.skills-description h3{
    font-size: 2em;
    margin-bottom: 5px;
}

.skills-info{
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.skills-info h4{
    margin-bottom: 20px;
}

.skills-info h4 label{
    background: var(--second-color);
    color: #fff;
    font-size: var(--normal-font-size);
    font-weight: 400;
    padding: 5px 15px;
    border-radius: 5px;
}

.edu-list .item{
    background: var(--card-bg-color);
    box-shadow: var(--box-shadow);
    border-bottom: 3px solid var(--second-color);
    padding: 20px;
    margin-top: 15px;
    border-radius: 6px;
    transition: .5s ease;
}

.edu-list .item .year{
    font-size: var(--small-font-size);
    margin-bottom: 5px;
}

.edu-list .item p{
    color: var(--third-color);
    font-size: var(--small-font-size);
}

.edu-list .item p span{
    color: var(--first-color);
    font-size: var(--normal-font-size);
    font-weight: 500;
}

.bar{
    background: var(--card-bg-color);
    box-shadow: var(--box-shadow);
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 6px;
    transition: .3s ease;
}

.bar .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: var(--small-font-size);
}

.bar .info span{
    font-weight: 500;
}

.bar .line{
    position: relative;
    width: 100%;
    height: 7px;
    background: var(--line-color);
    border-radius: 2px;
}

.bar .line::before{
    content: '';
    position: absolute;
    width: 95%;
    height: 100%;
    background: var(--second-color);
    border-radius: 2px;
    top: 0;
    left: 0;
}

.bar .html::before{
    width: 85%;
}

.bar .css::before{
    width: 80%;
}

.bar .javascript::before{
    width: 80%;
}

.bar .php::before{
    width: 90%;
}
j
/*projects section*/
.projects .container .content{
    width: 100%;
}

.projects-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 100%;
}

.projects-list .img-card{
    position: relative;
    max-width: 100%;
    height: 240px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    cursor: pointer;
}

.projects-list .img-card .overlay{
    transition: 1s ease;
}

.projects-list .img-card:hover .overlay{
    z-index: 777;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.projects-list .img-card .info{
    z-index: 777;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: .5s ease;
}


.projects-list .img-card:hover .info{
    transform: translateY(0);
    opacity: 1;
}

.projects-list .img-card .info h3{
    font-size: 1.5rem;
}

.projects-list .img-card .info span{
    font-size: 1.2rem;
}

.projects-list .img-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-model{
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--transparent-color-01);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

.projects-model.active{
    display: flex;
    visibility: visible;
    opacity: 1;
}

.projects-model-body{
    position: relative;
    background: var(--model-bg-color);
    max-width: 600px;
    max-height: 90vh;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transform: translateY(-50px);
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    
}

.projects-model-body p{
    text-align: justify;
}

.projects-model.active .projects-model-body{
    transform: translateY(0);
}

.projects-close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    z-index: 1000;
    cursor: pointer;
}

.projects-model-body h3{
    font-size: 1.5rem;
}

.projects-model-body img{
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    max-height: 200px;
    object-fit: contain;
}

.projects-model-body .btn{
    display: block;
    margin: 20px auto 0;
    text-align: center;
    width: fit-content;
}

/*contact section*/
.contact .container .content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact-left h2{
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 40px;
}

.contact-list li{
    margin-bottom: 40px;
}

.contact-list li h3{
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-list li h3 i{
    color: var(--second-color);
    font-size: 1.3em;
    margin-right: 10px;
}

.contact-list li span{
    color: var(--third-color);
    margin-left: 40px;
}

.contact-list li span a{
    color: var(--third-color);
}

.contact-right p{
    color: var(--third-color);
    font-size: 1.6em;
    margin-bottom: 30px;
}

.contact-right p span{
    color: var(--first-color);
    font-weight: 700;
}

.contact-form input, .contact-form textarea{
    color: var(--first-color);
    padding: 15px 40px 40px 20px;
    border-radius: 5px;
    border: none;
    background: var(--transparent-color-02);
    font-size: var(--normal-font-size);
    margin-bottom: 20px;
}

.contact-form textarea{
    width: 100%;
    resize: none;
}

::placeholder{
    color: var(--first-color);
}

.contact-form .first-row input{
    width: 100%;
}

.contact-form .second-row{
    display: flex;
    justify-content: space-between;
}

.contact-form .second-row input{
    width: 48%;
}

.contact-form .btn{
    border: none;
    margin-top: 0;
    border-radius: 5px;
    cursor: pointer;
}

.success-message {
    position: fixed;
    top: 80px;
    right: -500px;
    background-color: var(--second-color);
    color: var(--bg-color);
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s ease;
    z-index: 1000;
}

.success-message.active {
    right: 20px;
}

.success-message i {
    font-size: 1.2rem;
}

/*footer*/
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--second-color);
    width: 100%;
    margin-top: 50px;
    padding: 3rem 2rem;
    color: #fff;
}

footer a{
    color: #fff;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1150px;
}

.footer-container .about h2{
    font-size: 3em;
    font-weight: 600;
    background: linear-gradient(to top, transparent 0%, #fff 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .8;
}

.footer-container .about p{
    font-size: var(--normal-font-size);
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-container .info,
.footer-container .follow{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container .info h3,
.footer-container .follow h3{
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-container .info ul,
.footer-container .follow ul{
    display: flex;
}

.footer-container .info a{
    margin: 20px;
}

.footer-container .follow a{
    margin: 20px;
    font-size: 1.5em;
}

.footer-copyright p{
    font-size: var(--normal-font-size);
    font-weight: 300;
    margin-top: 50px;
}

/*media query*/
@media screen and (max-width: 1070px){

    /*header navigation menu*/
    .navigation{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--transparent-color-01);
        visibility: hidden;
        opacity: 0;
        transition: .3s ease;
    }

    .navigation.active{
        visibility: visible;
        opacity: 1;
    }

    .nav-items{
        position: relative;
        background: var(--model-bg-color);
        width: 600px;
        max-width: 600px;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 20px;
        padding: 40px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        transform: translateY(-50px);
        transition: .3s ease;
    }

    .navigation.active .nav-items{
        transform: translateY(0);
    }

    .nav-items a{
        margin: 15px 50px;
    }

    .nav-close-btn{
        position: absolute;
        background: url(../SE-2021-034/images/Close-btn2.png)no-repeat;
        filter: var(--color-filter);
        background-size: 12px;
        background-position: center;
        width: 40px;
        height: 40px;
        top: 0;
        right: 0;
        margin: 10px;
        cursor: pointer;
    }

    .nav-menu-btn{
        background: url(../SE-2021-034/images/menu-btn.png)no-repeat;
        filter: var(--color-filter);
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: block;
    }

    /*home section*/
    .home .home-container .info{
        font-size: .85rem;
    }

    /*about section*/
    .about .container .content{
        display: grid;
        width: 100%;
        row-gap: 20px;
    }

    .about-img img{
        min-width: 0;
        width: 100%;
        margin-bottom: 0;
    }

    .about-info{
        min-width: 0;
        width: 100%;
    }

    /*contact section*/
    .contact .content{
        flex-direction: column;
        font-size: 0.9rem;
    }

    .contact .contact-left{
        margin-bottom: 40px;
    }

    .contact-form .second-row{
        flex-direction: column;
    }

    .contact-form .second-row input{
        width: 100%;
    }

    /*footer*/
    footer .footer-container{
        flex-direction: column;
    }

    .footer-container .about, .footer-container .info{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .footer-container .info ul{
        align-items: center;
        flex-direction: column;
    }

    .footer-container .info ul li{
        margin: 5px 0;
    }

    .footer-container .hr{
        width: 100%;
        height: 2px;
        background: rgba(255,255,255,0.1);
        margin: 10px 0 22px;
    }

}

@media screen and (max-width: 768px) {
    body{
        margin: 5rem 0 0 0;
    }

    .section-title-01{
        font-size: 3em;
    }

    .section-title-02{
        font-size: 2em;
        transform: translateY(-65px);
    }

    /*project section*/
    .projects-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-list .img-card {
        height: 200px;
    }

    /*about section*/
    .about-info .professional-list{
        flex-direction: column;
    }

    .about-info .professional-list .list-item{
        justify-content: start;
    }

    /*home section*/
    .home .home-container{
        display: grid;
    }

    .home-container .home-img{
        position: absolute;
    }

    .home-container .home-img img{
        width: 100%;
        transform: translate(80px, -180px);
    }

    .home .home-container .info{
        font-size: 0.8rem;
    }

    .media-icons{
        margin-bottom: 80px;
    }

    .animated-bg {
    display: none;
    }
}

@media screen and (max-width: 480px) {
    .projects-list {
        grid-template-columns: 1fr;
    }
    
    .projects-model-body {
        width: 90%;
        max-width: 350px;
        padding: 20px;
    }
}