/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  background: #0a192f;
  padding: 20px 50px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: auto;
}
.profile-img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-content span {
  color: #007bff;
}

/* Projects */
.projects {
  padding: 60px 20px;
  background: #ffffff;
}
.projects h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.project-card {
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.project-details {
  flex: 1;
}
.project-gallery {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.project-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #0a192f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #007bff;
}

/* Contact */
.contact {
  padding: 60px 20px;
}
.contact-info {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.contact-info p {
  margin: 10px 0;
}
.contact-info a {
  color: #007bff;
  text-decoration: none;
}

/* Footer */
.footer {
  background: #0a192f;
  text-align: center;
  color: white;
  padding: 20px;
  font-size: 14px;
}
