body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #111827;
}

.navbar ul {
  display: flex;
  gap: 15px;
  list-style: none;
}

.navbar a {
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  flex-wrap: wrap;
}

.hero-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: cyan;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

/* PROJECTS */
.projects {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-card {
  background: #1f2937;
  padding: 15px;
  width: 260px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* ⭐ FIX: SAME IMAGE SIZE */
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Skills */
.skills span {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  background: #1f2937;
  border-radius: 8px;
}
/* Resume Section */
.resume {
  text-align: center;
}

/* Container */
.resume-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Blocks */
.resume-block {
  background: linear-gradient(145deg, #1f2937, #111827);
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.resume-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,255,255,0.15);
}

.resume-block h3 {
  color: cyan;
  margin-bottom: 10px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111827;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .projects {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
}