/* Research Gallery Styling */
.research-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 25px 0;
}

/* Row container */
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap; /* keep figures in one row */
}

/* Figure styling */
.gallery-row figure {
  text-align: center;
  max-width: 200px; /* smaller size */
}

.gallery-row img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-row figcaption {
  margin-top: 6px;
  font-size: 13px;
  color: #444;
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: #004080;
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    background: #003366;
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px gray;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #004080;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}


