* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: black;
    color: white;
    line-height: 1.6;
}

/* Navbar */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.links a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    color: #111827;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.hero h1 {
    font-size: 3rem;
    
}

.hero p {
    margin: 15px 0;
    max-width: 500px;
}

.btn {
    width: fit-content;
    padding: 12px 20px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

/* Sections */
.section {
    padding: 80px 60px;
}

.section h2 {
    margin-bottom: 20px;
}

/* Skills */
.skills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.skills span {
    background: #f3f4f6;
    padding: 10px 15px;
    border-radius: 8px;
    color: black;
}

/* Projects */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    padding: 20px;
    border-radius: 10px;
    background: black;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #242222;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.project-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
}

.project-btn:hover {
  opacity: 0.9;
}


/* Contact */
.contact {
    background: #f9fafb;
    color: black;
}