/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}



body{
    background: #0f172a;
    color: white;
}

/* NAVBAR */
.nav{
    width: 100%;
    height: 80px;
    padding: 0 8%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LOGO */
.logo h1{
    font-size: 32px;
    font-weight: 600;
    color: #00ffae;
    cursor: pointer;
}

/* SOCIAL ICON LIST */
.nav ul{
    display: flex;
    align-items: center;
    gap: 18px;

    list-style: none;
}

/* ICON STYLE */
.nav ul li a{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;
    color: white;

    background: rgba(255,255,255,0.08);

    font-size: 18px;

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.nav ul li a:hover{
    background: #00ffae;
    color: #0f172a;

    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ffae;
}
/* HERO SECTION */
.hero{
    width: 100%;
    min-height: 90vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;
}

/* IMAGE + ROLE BOX */
.banner{
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px 18px;

    background: rgba(0,255,174,0.1);

    border: 1px solid rgba(0,255,174,0.3);

    border-radius: 50px;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

/* PROFILE IMAGE */
.banner img{
    width: 60px;
    height: 60px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #00ffae;
}

/* APPLICATION DEV TEXT */
.banner span{
    font-size: 16px;
    font-weight: 500;

    color: #00ffae;

    text-transform: capitalize;
}

/* TITLE */
.hero h1{
    font-size: 70px;
    font-weight: 700;

    margin-bottom: 20px;
}

/* LINE */
.line-1{
    width: 120px;
    height: 5px;

    background: #00ffae;

    border-radius: 20px;

    margin-bottom: 25px;
}

/* DESCRIPTION */
.hero p{
    max-width: 700px;

    font-size: 18px;
    line-height: 1.8;

    color: #cbd5e1;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .hero h1{
        font-size: 45px;
    }

    .banner{
        padding: 8px 15px;
    }

    .banner img{
        width: 50px;
        height: 50px;
    }

    .hero p{
        font-size: 16px;
    }

}
/* SECTION TITLE */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 45px;
    margin-bottom: 15px;
}

.line{
    width: 100px;
    height: 5px;

    background: #00ffae;

    margin: auto;

    border-radius: 20px;
}


/* PROJECT SECTION */
.projects{
    padding: 100px 8%;
}

.project-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.project-card{
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 35px;

    border-radius: 25px;

    text-align: center;

    transition: 0.3s;
}

.project-card:hover{
    transform: translateY(-10px);

    border-color: #00ffae;

    box-shadow: 0 0 25px rgba(0,255,174,0.2);
}

.project-card span{
    font-size: 55px;
    color: #00ffae;

    margin-bottom: 20px;
}

.project-card h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.project-card p{
    color: #cbd5e1;
    line-height: 1.7;

    margin-bottom: 25px;
}

.project-card a{
    display: inline-block;

    padding: 12px 25px;

    background: #00ffae;

    color: #001233;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.project-card a:hover{
    transform: scale(1.05);
}


/* SKILLS SECTION */
.skills{
    padding: 100px 8%;
}

.skill-box{
    max-width: 800px;
    margin: auto;
}

.skill{
    margin-bottom: 35px;
}

.skill-info{
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 18px;
}

.progress-bar{
    width: 100%;
    height: 14px;

    background: rgba(255,255,255,0.08);

    border-radius: 20px;

    overflow: hidden;
}

.progress{
    height: 100%;

    background: #00ffae;

    border-radius: 20px;
}

/* PROGRESS WIDTH */
.html{
    width: 95%;
}

.css{
    width: 90%;
}

.js{
    width: 75%;
}

.java{
    width: 85%;
}
footer{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

}
 footer .social{ 
    color: black
    justify-content: space-between;
    display: flex;
    gap: 6px;
 }
 footer .social a{
    width: 25px;
    height: 25px;
    margin-left: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;
    color: white;

    background: rgba(255,255,255,0.08);

    font-size: 10px;

    transition: 0.3s ease;
 }
 footer .social a:hover{
    background: #00ffae;
    color: #0f172a;

    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ffae;
 }

 .copyright {
    color: red;
    font-size: 14px;
 }

 .shortlink{
    display: flex;
    justify-content: space-between;
 }
 footer ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-right: 20px;
 }
 footer ul li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
 }
 footer ul li a:hover{
    background: #00ffae;
    color: #0f172a;

    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ffae;
 }