/* GENERAL  */
/* ============================================================
   GLASSMORPHISM + NEON TECH THEME
   Dark gradient background • Neon glow hover • Futuristic UI
=============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


*{
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "poppins", sans-serif;
    background: linear-gradient(135deg, #03001e 0%, #0b0435 40%, #002f4b 100%);
    color: #e6e6e6;
    overflow-x: hidden;
}
:root {
    --neon-blue: #00eaff;
    --neon-purple: #c77dff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
}
/* Fade animation */
section, nav, footer {
    animation: fadeIn 0.7s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

p{
    color:  #c7f4f8;
}

/* TRANSITION */
a, .btn{
    transition: all 300 ease;
}

/* DESKTOP */
nav, .nav-links{
    display: flex;
}
nav{
    justify-content: space-around;
    align-items: center;
    height: 17vh;
    padding: 1.2rem 5rem;
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(14px);
    background: rgba(0,0,0,0.45);
    border-bottom: 1px solid var(--glass-border);
}
.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
     display: flex;
}

a{
    color: #e6e6e6;
    text-decoration: none;
    text-decoration-color:white ;
    transition: 0.4s ease;
}
a:hover{
    color: var(--neon-blue);
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color:rgb(205, 220, 57);
    text-shadow: 0 0 10px var(--neon-blue);
}

.logo{
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    background-clip: text;
    color: transparent;
}
.logo:hover{
    cursor: default;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* HAMBURGER MENUE */
#hamburger-nav{
    display: none;
}
.hamburger-menue{
    position: relative;
    display: inline-block;
}
.hamburger-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}
.hamburger-icon span{
    width: 100%;
    height: 3px;
    background: var(--neon-blue);
    transition: 0.3s ease-in-out;
}

.menue-links{
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition:all 0.3 ease-in-out ;
}
.menue-links a{
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 1.5rem;
    color: #e6e6e6;
    text-decoration: none;
    transition: all 0.3 ease-in-out;;
}
.menue-links li{
    list-style: none;
}
.menue-links.open{
    max-height: 280px;
}

/* Toggle animation */
.hamburger-icon.open span:first-child{
    transform:rotate(45deg) translate(6px, 6px);
}
.hamburger-icon.open span:nth-child(2){
opacity: 0;
}
.hamburger-icon.open span:last-child{
    transform:rotate(-45deg) translate(6px, -6px)
}


/* SECTIONS */
section{
    padding-top:6vh;
    height: 96vh;
    margin:0 8rem;
    box-sizing: border-box;
    min-height: fit-content;
}
.section-container{
    display: flex;
}

/* PROFILE */
#profile{
 display: flex;
 justify-content: center;
 gap: 4rem;
 align-items: center;
padding-top: 10vh;
 height: 80vh;
}
.section__pic-container{
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 25px var(--neon-blue);
    transition: 0.4s ease;
}

.section__pic-container:hover {
    transform: scale(1.06);
    box-shadow: 0 0 40px var(--neon-blue);
}
.section__text{
    align-self: center;
    text-align: center;
}
.section__text p{
    font-weight: 600;

}
.section__text__p1{
    text-align: center;
    color: #f5f7f7;
}
.section__text__p2{
    font-size: 1.75rem;
    margin-bottom:1rem ;
    color: #f5f7f7;
}
.section__text__p3{
    text-align: center;
    color: #034982;
}


.title{
    font-size: 3rem;
    text-align: center;
     margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    background-clip: text;
    color: transparent;
}

/* Social icons */
#socials-container{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* ICON */
.icon{
    cursor: pointer;
    height: 2.2rem;
    transition: 0.3s;
    
}
.icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* BUTTONS */
.btn-container{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn{
    font-weight: 600;
    padding: 1rem ;
    width: 8rem;
    border-radius: 2rem;
    border: 2px solid var(--neon-blue);
    color:#7ac9f8;
    background: transparent;
    transition: 0.3s;
}

.btn:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 20px var(--neon-blue);
}

.btn-container{
    gap: 1rem;
}

/* ============================================================
   GLASS CARDS (ABOUT / EXPERIENCE / PROJECTS)
=============================================================== */
.color-container,
.details-container{
    padding: 1.5rem;
    flex: 1;
    border-radius: 2rem;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: 0.4s ease;
    backdrop-filter: blur(12px);
}
.details-container:hover,
.color-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px var(--neon-purple);
}
/* ABOUT SECTION */
#about{
    position: relative;
}
.text-container{
    text-align: justify;
}
.about-containers{
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.about-details-container{
    justify-content: center;
    flex-direction: column;
}
.about-containers,
.about-details-container{
    display: flex;
}
.about-pic{
    border-radius: 2rem;
}

/* ============================================================
   ARROW ICON
=============================================================== */
.arrow{
    position: absolute;
    right: -5rem;
    bottom: 2.5rem;
    height: 3rem;
    filter: drop-shadow(0 0 10px var(--neon-blue));
    transition: 0.3s;
}

.arrow:hover {
    transform: translateY(6px);
}

.section-container{
    gap: 4rem;
    height: 80%;
}
.section__pic-container{
    height: 400px;
    width: 400px;
    margin: auto 0;
}

/* EXPERIENCE */
#experience{
    position: relative;
}
.experience-sub-title{
    color:#a3d6f4;
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
.experience-details-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.article-container{
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;
}
article{
    display: flex;
    width: 10rem;
    justify-content: space-around;
    gap: 0.5rem;
}
article.icon{
    cursor: default;
}

/* PROJECTS */
#projects{
    position: relative;
}
.color-container{
    border-color: rgb(163, 163, 163);
    background: rgb(250, 250, 250);
}
.project-img{
    width: 100%;
    border-radius: 14px;
    transition: 0.3s ease;
}
.project-img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 25px var(--neon-blue);
}
.project-title{
    margin: 1rem;
    color: black;
}
.project-btn{
    color: black;
    border-color: rgb(25, 9, 143);
}

/* CONTACT */
#contact{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
}
.contact-info-upper-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    border-color: rgb(163, 163, 163);
    background: var(--glass-bg);
    margin: 2rem auto;
    padding: 1.3rem 2rem;
}
.contact-info-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}
.contact-info-container p{
    font-size: larger;
}
.contact-icon{
    cursor: default;
}
.email-icon{
    height: 2.5rem;
}

/* FOOTER SECTION */
footer {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}
footer p{
    text-align: center;
}