.navbar {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  background-color: #0077b6;
  padding: 12px 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
  background-color: #00b4d8;
  color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e2e6ea);
  color: #333;
  padding: 40px;
}

.container {
  max-width: 960px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0077b6;
  transition: transform 0.3s ease-in-out;
}

.profile-img:hover {
  transform: scale(1.05);
}

.header-text h1 {
  font-size: 28px;
  color: #0077b6;
  margin-bottom: 8px;
}

.header-text a {
  color: #023e8a;
  text-decoration: none;
  font-weight: 600;
}

.header-text a:hover {
  text-decoration: underline;
}

hr {
  border: 1px solid #ccc;
  margin: 30px 0;
}

section {
  margin-bottom: 30px;
}

section h2 {
  color: #0077b6;
  font-size: 22px;
  margin-bottom: 10px;
  border-left: 6px solid #00b4d8;
  padding-left: 10px;
}

ul {
  list-style-type: square;
  padding-left: 20px;
  margin-top: 10px;
}

li {
  margin-bottom: 8px;
}

p {
  line-height: 1.6;
}

.experience h3 {
  color: #03045e;
  font-size: 18px;
  margin-top: 15px;
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

section:hover {
  background: #f1f8ff;
  padding: 10px 20px;
  border-radius: 12px;
  transition: background 0.3s ease;
}