* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #111;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    color: #ff8ccf;
}

/* HERO */
.hero {
    min-height: 90vh;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1;
}

.hero-text span {
    color: #ff8ccf;
}

.role {
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
}

.intro {
    max-width: 450px;
    color: #444;
}

.hero-image img {
    width: 320px;
    border-radius: 20px;
}

/* SECTIONS */
.section {
    padding: 80px 10%;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.light {
    background: #f7f7f7;
}

.dark {
    background: #111;
    color: #fff;
}

.dark p {
    color: #ccc;
}

/* EDUCATION */
.education {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.edu-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 280px;
}

.dark .edu-card {
    background: #1c1c1c;
}

/* SKILLS */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skills span {
    background: #ff8ccf;
    color: #111;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

/* PROJECTS */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.project-card a {
    text-decoration: none;
    color: #ff5fb2;
    font-weight: 600;
}

/* CONTACT */
.contact p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #aaa;
    font-size: 14px;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER EFFECTS */
.project-card:hover {
    transform: translateY(-8px);
}

.skills span:hover {
    transform: scale(1.08);
}

/* ATS TEXT */
.ats-skills {
    font-size: 14px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .nav ul {
        display: none;
    }
}
