body{
    margin: 0;
    padding: 0;
    background-color: #0f172a;
    color: #e2e8f0;
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 2vh 2vw;
    margin: 0px auto;
    cursor: pointer;
}

.nav_logo{
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin: 6px;
}

.right_section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.right_section a{
    text-decoration: none;
}

.right_section a li{
    list-style-type: none;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
}

.right_section a li:hover {
    color: #0ea5e9;
}

.hamburger_menu{
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    margin: 0;
    padding-right: 10px;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

#mobile_Links{
    display: none;
}

#mobile_Links ul{
    margin: 0;
    padding: 0;
}

#mobile_Links ul li{
    list-style-type: none;
}

/* Intro Page */

.intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    padding: 0 1.5rem;
}

.my_name{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(226, 232, 240), rgb(14, 165, 233)) text;
    font-size: 3.12rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.designation{
    font-size: 1.6rem;
    color: rgb(148, 163, 184);
    margin-bottom: 1.5rem;
}

.about_me{
    font-size: 1.125rem;
    color: rgb(148, 163, 184);
    max-width: 32rem;
    margin: 0px auto;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 4vh;
}

.tech_intro{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4vh;
    flex-wrap: wrap;
    align-content: space-evenly;
}

.badge{
    padding: 0.25rem 0.75rem;
    border-radius: 3rem;
    background: rgb(30, 41, 59);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgb(226, 232, 240);
    border: solid 1px rgb(51, 65, 85);
}

.site_links{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-content: space-evenly;
}

.link_icon{
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid #334155;
    color: #e2e8f0;
    gap: 0.7rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.link_icon:hover {
  background: #1e293b;
  border-color: #0ea5e9;
}

.primary_btn{
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    color: white;
}

.primary_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}


/* Project section */

.projects_section{
    width: 100vw;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section_title{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(226, 232, 240), rgb(14, 165, 233)) text;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.section_disc{
    font-size: 1.25rem;
    color: rgb(148, 163, 184);
    max-width: 48rem;
    margin: 0px auto;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.projects{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.proj_card{
    box-sizing: border-box;
    width: 20vw;
    min-width: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e293b80;
    padding: 1.5rem;
    transform: translateY(0px);
    border-radius: 1rem;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.proj_card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proj_link{
    text-decoration: none;
}

.proj_main_card{
    display: flex;
    align-items: center;
    flex: 1 1 0%;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.proj_card img{
    width: 100%;
    object-fit: cover;
    height: 30vh;
    border-radius: 1rem 1rem 0 0;
}

.card_content h1{
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: rgb(226, 232, 240);
}

.card_content P{
    margin-top: 0;
    color: rgb(148, 163, 184);
    font-size: 0.875rem;
}

.git_link{
    height: 100%;
}

.git_logo{
    padding: 0 1.1rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0.5rem 0.5rem;
    color: rgb(226, 232, 240);
}

.git_logo:hover{
    background-color: #1e293b;
}

.tech_proj{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-content: space-evenly;
}    

.icon-sm-middle{
    height: 30vh;
    width: 100%;
    background-color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1100px){
    .proj_card{
        width: 80vw;
    }

    .projects{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 750px){
    .right_section{
        display: none;
    }

    .hamburger_menu{
        display: block;
        padding: 0.5rem 0.75rem;
    }

    #mobile_Links{
        position: fixed;
        top: 12vh;
        left: 0;
        right: 0; 
        z-index: 999;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #334155;
        padding: 1.5rem;
        border-radius: 0 0 1rem 1rem;
    }

    #mobile_Links ul{
        line-height: 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }

     #mobile_Links ul a{
        text-decoration: none;
        color: rgb(148, 163, 184);
        font-weight: 500;
        transition: color 0.3s;
     }

    #mobile_Links ul a li:hover {
        color: #0ea5e9;
        cursor: pointer;
    }
}

@media (min-width: 750px){
    #mobile_Links ul li{
        display: none;
    }
}


/* Skills section */

.skills_section{
    width: 100vw;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skills_cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    margin-bottom: 1.5rem;
}

.skill_catogary_card{
    background: #1e293b80;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, .5);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease;
    width: 33vw;
}

.skill_catogary_card:hover{
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill_catogary_heading{
    margin: 0 0 0.5rem 0;
}

.skill_content{
    display: flex;
    flex-direction: column;   
    margin-top: 10px;
}

.skill_card_top{
    margin-bottom: 1.5rem;
}

.skill_info{
    display: flex;
    justify-content: space-between;
}

.skill_info p{
    margin: 8px 0;
}

.skill_radar{
    width: 100%;
    height: .5rem;
    background: #1e293b;
    border-radius: 9999px;
    overflow: hidden;
}

.skill_level{
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 1rem;
    transition: 1s ease-out;
}

.add_Badge{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-evenly;
    gap: 1rem;
    width: 75vw;
}

.add_Badge .badge{
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.add_Badge .badge:hover{
    background: #1e293b;
    border-color: #0ea5e9;
}

@media (max-width: 900px){
    .skills_cards{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill_catogary_card{
        width: 75vw;
    }
}


/* Experience_section */

.experience_section{
    width: 100vw;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exp_card{
    width: 75vw;
    background: #1e293b80;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, .5);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease;
}

.exp_card h2{
    margin: 0 0 0.4rem 0;
}

.exp_card p{
    font-weight: 400;
    font-size: 1.4rem;
    margin: 0;
}

.work_info{
    display: flex;
    gap: 1.15rem;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.work_info p{
    font-size: 1.1rem;
    font-weight: 300;
}

.more_info{
    display: flex;
    gap: 1rem;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.more_info p{
    font-weight: 300;
}

.more_info .badge{
    background: rgba(34, 197, 94, 0.2);
    color: rgb(34, 197, 94);
    border-color: rgba(34, 197, 94, 0.3);
}


/* Education_section */

.education_section{
    width: 100vw;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cert_title{
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem 0;
}

.cert_title h3{
    margin: 2rem 0 1.25rem 0;
}

.all_cert{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert_link{
    text-decoration: none;
    color: #e2e8f0;
}

.exp_card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


/* contact_section */

.contact_section{
    width: 100vw;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon_new{
    height: 1.25rem;
    width: 1.25rem;
    color: #0ea5e9;
}

.contact_cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}

.contact_info{
    box-sizing: border-box;
    width: 33vw;
    min-width: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #1e293b80;
    padding: 1.5rem;
    border-radius: 1rem;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.contact_info h2{
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(226, 232, 240);
    margin: 0 0 0.5rem 0;
}

.contact_info p{
    color: rgb(148, 163, 184);
    margin: 0 0 1rem 0;
}

.grp_contact{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
}

.contact_value{
    color: rgb(148, 163, 184);
    margin: 0 0 0 0.75rem;
}

.icon_old{
    height: 1.25rem;
    width: 1.25rem;
    color: rgb(226, 232, 240);
}

.grp_contact a{
    text-decoration: none;
    background: transparent;
    color: #94a3b8
}

@media (max-width: 1000px){
    .contact_cards{
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .contact_info{
        width: 80vw;
    }
}