* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0d0014;
    color: white;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: black;
    position: sticky;
    top: 0;
}

header h2 {
    color: #dc9fff;
}

nav a {
    color: white;
    margin-left: 20px;
    position: sticky;
    text-decoration: none;
}

nav a:hover {
    background: linear-gradient(90deg, #a200ff, #dc9fff);
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
}

.highlight {
    background: linear-gradient(90deg, #a200ff, #dc9fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #94a3b8;
}

/* Section */
.section {
    padding: 60px 50px;
}

.section h2 {
    margin-bottom: 20px;
    color: #dc9fff;
}

/* Projects */
.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: #dc9fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000000;
}

/* Responsive */
@media(max-width:768px){
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 20px;
    }
}
.heart{
  color:#dc9fff;
}



.skill-box {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    background: rgba(167, 139, 250, 0.2);
    color: #dc9fff;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
    transition: 0.3s;
}

.tag:hover {
    background: ;
    color: white;
}