*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
section {
    margin-bottom: 1rem;
    
}
h1{
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #d162cf;
    text-align: center;
    z-index: 0;
    transition: .3s;
    /* font-size: clamp(1.2rem, 10vw, 5rem); */
    font-size: 6.3rem;
}
p {
    font-weight: 300;
    font-style: normal;
}
h2 {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    color: #d162cf;
    margin-bottom: 30px;
}
.mobile-break {
    display: none;
}
.hero{
    height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, #ffffff33, transparent 25%),
        radial-gradient(circle at 80% 40%, #ff7bcf22, transparent 20%),
        linear-gradient(135deg,#F7A8D7,#FFD1B8);
        border-radius: 0 0 20px 20px;
}
.container{
    padding: min(1200px, 4em);
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu-toggle {
    display: none;
}
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    padding: 30px 70px;
    height: 54px;
    background: rgba(255, 255, 255, 0.27);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.nav-list{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.nav-list-item {
    list-style: none;
}
.nav-list-item a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
}
.nav-list-item a:hover{
    color: #d162cf;
}
.hero-main{
    width: 100%;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
}
.hero-desc{
    text-align: center;
    font-size: 1.5rem;
    color: #f2f2f2;
    font-weight: 300;
}
.hero-content{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hero-image {
    display: flex;
    align-items: flex-end;
}
.hero-image img{
    width: 100%;
    max-width: 370px;
    height: auto;
    margin-top: -270px;
}
.hero-card{
    display: flex;
    align-items: center;
    gap: 40px;
} 
.hero-card .hero-introduction .hai{
    font-weight: bold;
    font-size: 20px;
    color: #d162cf;
    margin-bottom: 20px;
}
.hero-introduction{
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 1.8rem;
    max-width: 400px;
}
.hero-card p{
    color: #f2f2f2;
    font-size: 1.2em;
    text-align: justify;
    line-height: 1.5rem;
}
.desc-me{
    display: flex;
    gap: 50px;
}
.desc-me p{
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6rem;
}
.desc-me span{
    color: #D162CF;
    font-weight: bold;
}
.desc-me img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
}
.social-media{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.social-media a{
    text-decoration: none;
    color: #d162cf;
    font-size: 30px;
    transition: .3s;
    padding: 0;
}
.social-media a:hover {
    color: black;
    transition: .3s;
}
.main-content {
    margin-top: 30px;
}
.experiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    margin-top: 80px;
}
.edu-skills {
    display: grid;
}
.edu-title{
    font-weight: bold;
    font-size: 18px;
}
.education .univ-edu{
    font-size: 14px;
}
.skills {
    background: linear-gradient(135deg,#F7A8D7,#FFD1B8);
    padding: 30px;
    border-radius: 20px;
}
.skill-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.skill-name {
    padding: 7px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.459);
    color: #D162CF;
    list-style: none;
}
.certification, .education {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}
.certification::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg,#F7A8D7,#FFD1B8);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    border-radius: inherit;
    padding: 3px;
}
.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.certificate-list {
    list-style: none;
    color: rgb(209, 98, 207);
}
.certificate-list li {
     border-bottom: 2px dotted #D162CF;
}
.certificate-list a {
    text-decoration: none;
}
.main-content .container {
    display: flex;
    gap: 50px;
}
.project-list-card, .activity-list-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.project-card, .activity-card {
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    /* border: 1px solid red; */
}
.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 35px rgba(209,98,207,.25);
}
.project-card img{
    width: 100%;
    height: 180px;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
}
.project-content {
    padding: 20px;
}
.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:20px 0;
}

.tech-stack span{
    padding:6px 12px;
    border-radius:20px;
    background:#f6d4ef;
    color:#D162CF;
    font-size:14px;
}
/* .activity-list-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 20px;
} */
.activity-card img {
    width: 100%;
    height: 180px;
    border-radius: 20px 20px 0 0;
    /* object-fit: cover; */
}
footer {
    height: 70px;
    background: linear-gradient(135deg,#F7A8D7,#FFD1B8);
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.2);
    z-index: 1000;
}

.progress-fill{
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg,#F7A8D7,#D162CF);
}

.scroll-indicator{
    position: fixed;
    top: 8px;        
    left: 0;
    width: 70px;
    height: auto;
    pointer-events: none;
    z-index: 1001;
}
@media (max-width: 425px) {
    .container {
        padding: 1em;
    }
    h1 {
        overflow-wrap: break-word;
        font-size: 4.6rem;
        text-align: justify;
    }
    .mobile-break {
        display: inline;
    }
    .menu-toggle {
        cursor: pointer;
        display: block;
        background: none;
        color: #D162CF;
        font-size: 28px;
        border: none;
    }
    .nav-menu {
        justify-content: space-between;
        width: 100%;
        align-items: flex-start;
        position: absolute;
        border-radius: 0;
        padding: 0;
        background: none;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s;
    }
    .nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .hero {
        height: 100vh;
    }
    .hero-main {
        height: inherit;
        justify-content: space-between;
        border: 1px solid red;
    }
    .hero-card {
        flex-direction: column;
        margin-top: 40px;
    }
    .hero-desc {
        text-align: left;
        margin-top: 20px;
        font-size: 20px;
    }
    .hero-image img {
        width: 300px;
        margin-top: -210px;
    }
    .desc-me {
        flex-direction: column;
    }
    .desc-me img {
        width: 100%;
        max-width: 370px;
        height: auto;
    }
    .social-media{
        justify-content: center;
    }
    .experiences {
        grid-template-columns: 1fr;
    }
}