body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #f5f7fa;
}

header {
  background: #1a2a44;
  color: white;
  padding: 40px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.header-text {
  flex: 1;
  text-align: left;
}

.header-image {
  flex-shrink: 0;
}

.profile-pic {
  width: 200px;
  height: 200px;
  min-width: 200px;   /* prevents squeezing */
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
}

nav {
  background: #0f1c2e;
  text-align: center;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  text-align: justify;
  text-justify: inter-word;
}

h2 {
  border-bottom: 2px solid #ddd;
}

img {
  max-width: 100%;
  height: auto;
}

footer {
  background: #0f1c2e;
  color: #ddd;
  margin-top: 60px;
}

/* MAIN FOOTER */
.footer-main {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

/* LEFT */
.footer-left {
  max-width: 60%;
}

.footer-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-right a {
  color: #aad4ff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* LINKS */
footer a {
  color: #aad4ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* FOOTPRINT BAR */
.footer-bottom {
  background: #08111f;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #888;
}

/* RESEARCH ITEM LAYOUT */
.research-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  padding: 30px;
  border-radius: 12px;
  background: #eef3fa;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Alternate layout (image left) */
.research-item.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.research-text {
  flex: 1;
}

.research-text h3 {
  margin-top: 0;
  color: #1a2a44;
}

/* HIGHLIGHT */
.highlight {
  margin-top: 10px;
  font-weight: bold;
  color: #0f1c2e;
}

/* IMAGE */
.research-image {
  flex: 1;
  text-align: center;
}

.research-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* SUBTLE HOVER */
.research-item:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}
