* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff5f8;
    color: #333;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.logo {
    color: #ec4899;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #fbcfe8, #ddd6fe);
}

.hero h1 span {
    color: #ec4899;
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
}

.btn {
    background: #ec4899;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 70px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #ec4899;
}

.bg {
    background: white;
}

/* Skills */
.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.card {
    background: #fce7f3;
    padding: 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(236,72,153,0.2);
}

/* Projects */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.project-card {
    background: #ede9fe;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #ec4899;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }
    .section {
        padding: 40px 20px;
    }
}
