/* Avatar & Logo */
.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 6px;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: auto;
}




body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f4f8fc;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e1e40;
  color: white;
  padding: 1rem 2rem;
}

.navbar a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #3a7bd5, #00d2ff);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #fff;
  color: #0e1e40;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.about, .projects, .contact {
  padding: 3rem 2rem;
  text-align: center;
}

.project-card {
  background: white;
  margin: 1rem auto;
  padding: 1.5rem;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  background: #0e1e40;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.connect {
  background: #f9fbff;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #ddd;
}

.connect h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0e1e40;
}

.connect p {
  color: #333;
  margin-bottom: 1.5rem;
}

.social-links a {
  display: inline-block;
  margin: 0.5rem 1rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: white;
  background: #3a7bd5;
  border-radius: 8px;
  transition: 0.3s ease;
  font-weight: 600;
}

.social-links a:hover {
  background: #0e1e40;
}
