*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:white;
}

.tagline{
    margin-top:8px;
    letter-spacing:1px;
    opacity:0.85;
}

.profile-pic{
    width:140px;
    height:140px;
    border-radius:50%;
    margin:20px 0;
    object-fit:cover;
    border:4px solid #a78bfa;
    box-shadow:0 0 25px rgba(167,139,250,0.7);
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}


/* HERO */
.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(15,23,42,0.88),rgba(15,23,42,0.88)),
    url("paksha.jpg.jpeg") center/cover fixed no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}



.hero h1{
    font-size:3.8rem;
    background:linear-gradient(90deg,#f472b6,#a78bfa,#38bdf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h3{
    margin-top:10px;
    opacity:0.9;
}

.btn{
    margin-top:30px;
    background:linear-gradient(90deg,#6366f1,#9333ea);
    color:white;
    padding:14px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 0 25px rgba(99,102,241,0.7);
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 45px rgba(147,51,234,0.9);
}


/* SECTIONS */
section{
    padding:80px 12%;
}


h2{
    color:#c4b5fd;
    margin-bottom:30px;
    position:relative;
}

h2::after{
    content:'';
    width:80px;
    height:3px;
    background:linear-gradient(90deg,#6366f1,#ec4899);
    position:absolute;
    bottom:-10px;
    left:0;
}


/* SKILLS */
.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:20px;
}

.card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    border:1px solid rgba(255,255,255,0.1);
    padding:20px;
    border-radius:12px;
    text-align:center;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

/* PROJECTS */
.project-card{
    background:#1e293b;
    padding:25px;
    border-radius:12px;
}

/* CONTACT */
.contact p{
    margin-top:10px;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#020617;
    font-size:0.9rem;
}

.hero, section{
    animation:fadeIn 1.2s ease-in;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}


.glass{
    background:rgba(255,255,255,0.07);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.pill-container span{
    display:inline-block;
    margin:6px;
    padding:10px 22px;
    border-radius:30px;
    background:linear-gradient(90deg,#6366f1,#9333ea);
    font-size:0.9rem;
    box-shadow:0 0 15px rgba(99,102,241,0.6);
}

.step{
    padding:10px 0;
    border-left:3px solid #6366f1;
    padding-left:20px;
    margin:15px 0;
}

.resume iframe{
    width:100%;
    height:600px;
    border:none;
    border-radius:16px;
    margin-top:20px;
}

.projects .project-card{
    background:rgba(255,255,255,0.06);
    padding:22px;
    border-radius:16px;
    margin:18px 0;
    transition:0.3s;
}

.projects .project-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 30px rgba(99,102,241,0.6);
}

.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.contact-box a {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;

    word-wrap: break-word;
    white-space: normal;
}

.contact-box a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}



