/* ----- POPPINS FONT Link ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ----- VARIABLES ----- */
:root{
    --body-color: rgb(250, 250, 250);
    --color-white: rgb(255, 255, 255);

    --text-color-second: rgb(68, 68, 68);
    --text-color-third: rgb(30, 159, 171);

    --first-color: #1e9fab;
    /* --first-color: rgb(110, 87, 224); */
    --first-color-hover: rgb(40, 91, 212);

    --second-color: rgb(0, 201, 255);
    --third-color: rgb(192, 166, 49);
    --first-shadow-color: rgba(0, 0, 0, 0.1);

}

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

/* ----- SMOOTH SCROLL ----- */
html{
    scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar{
    width: 10px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover{
    background: #bbb;
}


/* ---##-- REUSABLE CSS --##--- */

/* ----- GLOBAL BUTTON DESIGN ----- */
.btn{
    font-weight: 500;
    padding: 12px 20px;
    background: #efefef;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn:hover::before{
    left: 100%;
}
.btn>i{
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.btn:hover>i{
    transform: rotate(10deg);
}
.btn:hover{
    background: var(--second-color);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 201, 255, 0.3);
}

/* ----- GLOBAL ICONS DESIGN ----- */
i{
    font-size: 16px;
}

/* ------- BASE -------- */
body{
    background: var(--body-color);
}
.container{
    width: 100%;
    position: relative;
}

/* ----- NAVIGATION BAR ----- */
nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    line-height: 90px;
    background: rgba(250, 250, 250, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-inline: 9vw;
    transition: .3s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.nav-logo{
   position: relative;
}
.nav-name{
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color-third);
}
.nav-logo span{
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 5em;
    color: var(--text-color-second);
}
.nav-menu, .nav_menu_list{
    display: flex;
}
.nav-menu .nav_list{
    list-style: none;
    position: relative;
}
.nav-link:hover {
	background: linear-gradient(135deg, rgba(30, 159, 171, 0.1), rgba(0, 201, 255, 0.1));
	border-radius: 10px;
	color: var(--first-color);
	transform: translateY(-2px);
}
.nav-link{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    padding-inline: 15px;
    margin-inline: 20px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-menu-btn{
    display: none;
}
.nav-menu-btn i{
    font-size: 28px;
    cursor: pointer;
}
.active-link{
    position: relative;
    color: var(--first-color);
    transition: .3;
}
.active-link::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    /* transform: translate(-50%, -50%);
    width: 5px;
    height: 5px; */
    background: var(--first-color);
    border-radius: 50%;
}


/* ----- WRAPPER DESIGN ----- */
.wrapper{
    padding-inline: 10vw;
}

/* ----- FEATURED BOX ----- */
.featured-box{
    position: relative;
    display: flex;
    height: 100vh;
    min-height: 700px;
}

/* ----- FEATURED TEXT BOX ----- */
.featured-text{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}
.featured-text-card span{
    background: var(--third-color);
    color: var(--color-white);
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 5px;
}
.featured-name{
    font-size: 50px;
    font-weight: 700;
    color: var(--text-color-second);
    margin-block: 20px;
    animation: fadeInDown 0.8s ease-out;
}
.typedText{
    text-transform: capitalize;
    color: var(--text-color-third);
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.featured-text-info{
    font-size: 15px;
    margin-bottom: 30px;
    color: var(--text-color-second);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
@keyframes fadeInDown{
    from{
        opacity: 0;
        transform: translateY(-30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.featured-text-btn{
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.featured-text-btn>.blue-btn{
    background: linear-gradient(135deg, var(--first-color), #0d8c97);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(30, 159, 171, 0.3);
}
.featured-text-btn>.blue-btn:hover{
    background: linear-gradient(135deg, #0d8c97, var(--first-color));
    box-shadow: 0 10px 30px rgba(30, 159, 171, 0.4);
    transform: translateY(-3px);
}
.linkedin-btn{
    background: linear-gradient(135deg, #0A66C2, #005fa3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}
.linkedin-btn:hover{
    background: linear-gradient(135deg, #005fa3, #0A66C2);
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.4);
    transform: translateY(-3px);
}.social_icons{
    display: flex;
    margin-top: 5em;
    gap: 30px;
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    color: var(--text-color-second);
}
.icon:hover{
    background: rgba(30, 159, 171, 0.2);
    color: var(--first-color);
    border-color: rgba(30, 159, 171, 0.5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 25px rgba(30, 159, 171, 0.25);
}

/* ----- FEATURED IMAGE BOX ----- */
.featured-image{
    display: flex;
    justify-content: right;
    align-content: center;
    min-height: 80vh;
    width: 50%;
}
.image{
    margin: auto 0;
    width: 380px;
    height: 380px;
    border-radius: 55% 45% 55% 45%;
    overflow: hidden;
    animation: imgFloat 7s ease-in-out infinite;
}
.image img{
    width: 380px;
    height: 380px;
    object-fit: cover;
}
@keyframes imgFloat {
    50%{
        transform: translateY(10px);
        border-radius: 45% 55% 45% 55%;
    }
}
.scroll-btn{
   position: absolute;
   bottom: 0;
   left: 50%;
   translate: -50%;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 150px;
   height: 50px;
   gap: 5px;
   text-decoration: none;
   color: var(--text-color-second);
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border-radius: 30px;
   border: 1px solid rgba(255, 255, 255, 0.5);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   animation: bounce 2s infinite;
}
.scroll-btn:hover{
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(30, 159, 171, 0.2);
    transform: translateY(-3px);
    color: var(--first-color);
}
.scroll-btn i{
    font-size: 20px;
    transition: transform 0.3s ease;
}
.scroll-btn:hover i{
    transform: translateY(3px);
}
@keyframes bounce{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}

/* ----- MAIN BOX ----- */
.section{
    padding-block: 5em;
}
.row{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}
.col{
    display: flex;
    width: 50%;
}

/* -- ## --- RESUABLE CSS -- ## -- */
.top-header{
    text-align: center;
    margin-bottom: 5em;
}
.top-header h1{
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 10px;
}
.top-header span{
    color: #999;
}
h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 15px;
}

/* ----- ABOUT INFO ----- */
.about-info{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-block: 30px 70px;
    padding-inline: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(30, 159, 171, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.about-info:hover{
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(30, 159, 171, 0.15);
    transform: translateY(-8px);
}
.about-info p{
    text-align: center;
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}
.about-btn button{
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--first-color), #0d8c97);
    color: var(--color-white);
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(30, 159, 171, 0.3);
    transition: all 0.3s ease;
}
.about-btn button:hover{
    background: linear-gradient(135deg, #0d8c97, var(--first-color));
    box-shadow: 0 10px 30px rgba(30, 159, 171, 0.4);
    transform: translateY(-2px);
}

/* ----- ABOUT / SKILLS BOX ----- */
.skills-box{
    margin: 10px;
}
.skills-header{
    margin-bottom: 30px;
}
.skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.skills-list span{
    font-size: 14px;
    background: var(--first-color);
    color: var(--color-white);
    padding: 2px 10px;
    border-radius: 5px;
}

/* ----- PROJECTS BOX ----- */
.project-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.project-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    height: 250px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}
.project-box>i{
    font-size: 50px;
    color: #00B5E7;
    margin-bottom: 25px;
}
.project-box label{
    font-size: 15px;
    color: #777;
}
.project-box::after, .contact-info::after{
    content: "";
    position: absolute;
    bottom: -100%;
    background: var(--second-color);
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 1;
}
.project-box:hover.project-box::after,
.contact-info:hover.contact-info::after{
    bottom: 0;
}
.project-box:hover.project-box i,
.project-box:hover.project-box>h3,
.project-box:hover.project-box>label{
    color: var(--color-white);
    z-index: 2;
}

/* ----- CONTACT BOX ----- */
.contact-info{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    height: 315px;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.9), rgba(30, 159, 171, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 201, 255, 0.25);
    overflow: hidden;
    transition: all 0.4s ease;
}
.contact-info:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 201, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.95), rgba(30, 159, 171, 0.95));
}
.contact-info>h2{
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 700;
}
.contact-info>p{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-block: 5px;
    transition: all 0.2s ease;
}
.contact-info p>i{
    font-size: 18px;
    transition: transform 0.3s ease;
}
.contact-info>p:hover i{
    transform: scale(1.2);
}
.contact-info::after{
    background: var(--color-white);
}
.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i{
    color: #777;
    z-index: 2;
}

/* ----- CONTACT FORM ----- */
.form-control{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.form-inputs{
    display: flex;
    gap: 10px;
    width: 100%;
}
.input-field{
    width: 50%;
    height: 55px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(30, 159, 171, 0.2);
    border-radius: 12px;
    padding-inline: 20px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-color-second);
}
.input-field:focus{
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(30, 159, 171, 0.1);
    transform: translateY(-2px);
}
.input-field::placeholder{
    color: #999;
}
textarea{
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(30, 159, 171, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    outline: none;
    resize: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-color-second);
}
textarea:focus{
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(30, 159, 171, 0.1);
}
textarea::placeholder{
    color: #999;
}
.form-button>.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--second-color), #00b8d4);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 201, 255, 0.3);
}
.form-button>.btn:hover{
    background: linear-gradient(135deg, #00b8d4, var(--second-color));
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.4);
    transform: translateY(-3px);
}
.form-button i{
    font-size: 18px;
    rotate: -45deg;
    transition: rotate 0.3s ease;
}
.form-button>.btn:hover i{
    rotate: -30deg;
}

/* ----- FOOTER BOX ----- */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.8), rgba(240, 240, 240, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-block: 40px 60px;
    transition: all 0.3s ease;
}
.top-footer p{
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.middle-footer .footer-menu{
    display: flex;
}
.footer_menu_list{
    list-style: none;
}
.footer_menu_list a{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    margin-inline: 20px;
    transition: all 0.3s ease;
    position: relative;
}
.footer_menu_list a::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--first-color), var(--second-color));
    transition: width 0.3s ease;
}
.footer_menu_list a:hover::after{
    width: 100%;
}
.footer_menu_list a:hover{
    color: var(--first-color);
}
.footer-social-icons{
    display: flex;
    gap: 30px;   
}
.bottom-footer{
    font-size: 14px;
    margin-top: 10px;
    color: #666;
    transition: all 0.3s ease;
}

/* ----- VISITOR COUNTER ----- */
#visitor-count{
    color: var(--first-color);
    font-weight: 600;
    font-size: 14px;
}

.bottom-footer p{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.bottom-footer i{
    color: var(--first-color);
}

/* ----- MODERN PROJECT CARDS ----- */
.project-card{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(30, 159, 171, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    flex: 0 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.project-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--first-color), var(--second-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 159, 171, 0.25);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 159, 171, 0.2);
}

.project-card:hover::before{
    transform: scaleX(1);
}

.project-icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    border-radius: 12px;
    display: flex;
    align-items:center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 159, 171, 0.2);
}

.project-card:hover .project-icon{
    transform: rotate(8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 159, 171, 0.35);
}

.project-icon i{
    font-size: 28px;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.project-card h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color-second);
    font-weight: 700;
}

.project-description{
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.project-stack{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-badge{
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 159, 171, 0.1), rgba(0, 201, 255, 0.1));
    color: var(--first-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1.5px solid var(--first-color);
    transition: all 0.3s ease;
}

/* ----- EXPERIENCE SECTION ----- */
.experience-container{
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-item{
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(30, 159, 171, 0.08);
    border-left: 5px solid var(--first-color);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-item::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.experience-item:hover{
    box-shadow: 0 16px 48px rgba(30, 159, 171, 0.2);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 159, 171, 0.2);
}

.experience-item:hover::before{
    transform: translate(30%, -30%);
}

.experience-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.experience-header h3{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.company{
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 14px;
}

.timeline{
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.timeline i{
    color: var(--first-color);
    font-size: 16px;
}

.experience-item:hover .timeline{
    color: var(--first-color);
}

.experience-details{
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-details li{
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: all 0.2s ease;
}

.experience-details li:before{
    content: "→";
    position: absolute;
    left: 0;
    color: var(--first-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.experience-item:hover .experience-details li:before{
    transform: translateX(3px);
}

.experience-item:hover .experience-details li{
    color: var(--text-color-second);
}


/* ----- MEDIA QUERY == 1024px / RESPONSIVE ----- */
@media only screen and (max-width: 1024px){
    .featured-text{
        padding: 0;
    }
    .image, .image img{
        width: 320px;
        height: 320px;
    }
}

/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 900px) {
    .nav-button{
        display: none;
    }
    .nav-menu.responsive{
        left: 0;
    }
    .nav-menu{
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        width: 100%;
        min-height: 450px;
        height: 90vh;
        transition: .3s;
    }
    .nav_menu_list{
        flex-direction: column;
    }
    .nav-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .featured-box{
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }
    .featured-text{
        width: 100%;
        order: 2;
        justify-content: center;
        align-content: flex-start;
        min-height: 60vh;
    }
    .social_icons{
        margin-top: 2em;
    }
    .featured-image{
        order: 1;
        justify-content: center;
        min-height: 150px;
        width: 100%;
        margin-top: 65px;
    }
    .image, .image img{
        width: 150px;
        height: 150px;
    }
    .row{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }
    .col{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .about-info, .contact-info{
        width: 100%;
    }
    .project-container{
        justify-content: center;
    }
    .project-box{
        width: 80%;
    }
    .project-card{
        flex: 0 1 calc(50% - 20px);
    }

}

/* ----- MEDIA QUERY == 540px / RESPONSIVE ----- */

@media only screen and (max-width: 540px){
    .featured-name{
        font-size: 40px;
    }
    .project-box{
        width: 100%;
    }
    .form-inputs{
        flex-direction: column;
    }
    .input-field{
        width: 100%;
    }
    .project-card{
        flex: 0 1 100%;
    }
}

/* ----- MODERN UI/UX ANIMATIONS ----- */

/* Smooth page entrance animation */
html{
    scroll-behavior: smooth;
}

body{
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Stagger animations for elements */
.section{
    animation: sectionReveal 0.6s ease-out;
}

@keyframes sectionReveal{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar{
    width: 12px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: linear-gradient(180deg, #f5f5f5, #f0f0f0);
    border-radius: 25px;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, var(--first-color), var(--second-color));
    border-radius: 30px;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(180deg, var(--second-color), var(--first-color));
    box-shadow: 0 0 8px rgba(30, 159, 171, 0.3);
}

/* Smooth link transitions */
a{
    transition: all 0.3s ease;
}

/* Enhanced headings with gradient effect */
h1, h2, h3, h4, h5, h6{
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Image hover zoom effect */
img{
    transition: all 0.3s ease;
}

img:hover{
    transform: scale(1.05);
}

/* Project container hover effect */
.project-container>*{
    animation: cardReveal 0.6s ease-out;
    animation-fill-mode: both;
}

.project-container>:nth-child(1){ animation-delay: 0.1s; }
.project-container>:nth-child(2){ animation-delay: 0.2s; }
.project-container>:nth-child(3){ animation-delay: 0.3s; }
.project-container>:nth-child(4){ animation-delay: 0.4s; }
.project-container>:nth-child(5){ animation-delay: 0.5s; }
.project-container>:nth-child(6){ animation-delay: 0.6s; }

@keyframes cardReveal{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse effect for interactive elements */
@keyframes pulse{
    0%, 100%{
        box-shadow: 0 0 0 0 rgba(30, 159, 171, 0.7);
    }
    50%{
        box-shadow: 0 0 0 10px rgba(30, 159, 171, 0);
    }
}

.icon{
    position: relative;
}

.icon::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0;
}

.icon:hover::after{
    animation: pulse 0.6s ease-out;
}

/* Smooth transitions for form elements */
input, textarea, select{
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Active state for links */
.nav-link.active-link{
    animation: activeLink 0.3s ease-out;
}

@keyframes activeLink{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Hover effect for buttons - ripple */
.btn::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Glow effect on focus */
input:focus,
textarea:focus{
    box-shadow: 0 0 0 3px rgba(30, 159, 171, 0.1), 
                inset 0 0 0 2px rgba(30, 159, 171, 0.2);
}

/* Smooth color transitions */
*{
    --transition: all 0.3s ease;
}

button, a, input, textarea{
    transition: var(--transition);
}

/* Loading state animation */
@keyframes shimmer{
    0%{
        background-position: -1000px 0;
    }
    100%{
        background-position: 1000px 0;
    }
}

.loading{
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
}

/* Smooth transform for all hover states */
.project-box, .project-card, .experience-item{
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Text selection styling */
::selection{
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    color: var(--color-white);
}

::-moz-selection{
    background: linear-gradient(135deg, var(--first-color), var(--second-color));
    color: var(--color-white);
}