/* Hide scrollbar for news-list */
.news-list {
  scrollbar-width: none; /* Firefox */
}
.news-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
  margin: 0;
}

.header-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  position: relative;
}
.logo {
  width: 80px;
  height: auto;
  margin-right: 0;
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: flex-start;
  display: block;
}
.header-center-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  color: #003366;
}
.subtitle {
  text-align: left;
  margin-bottom: 0;
}

/* Dropdown menu styling - single valid block */
.nav-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  vertical-align: top;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 6px 16px 6px 12px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  background: #22313f;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.dropdown-toggle::after {
  content: '\25BC';
  font-size: 0.7em;
  margin-left: 8px;
  color: #ffd700;
  transition: transform 0.2s;
}
.nav-dropdown:hover .dropdown-toggle,
.dropdown-toggle:hover {
  background: #1a6ca3;
  color: #fff;
}
.nav-dropdown:hover .dropdown-toggle::after,
.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: #22313f;
  box-shadow: 0 2px 8px rgba(34,49,63,0.10);
  border-radius: 8px;
  z-index: 1000;
  padding: 0;
  margin-top: 0;
  flex-direction: column;
  pointer-events: auto;
}
.nav-dropdown:hover .dropdown-menu {
  display: block !important;
}
.dropdown-menu a {
  color: #fff;
  background: #22313f;
  padding: 8px 18px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: #009688;
  color: #fff;
}

.nav a {
  color: #1a6ca3;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav a:hover {
  background: #1a6ca3;
  color: #fff;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 32px auto 18px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(34,49,63,0.10);
}
.carousel img {
  width: 100%;
  display: none;
  border-radius: 16px;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
.carousel img.active {
  display: block;
  opacity: 1;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-controls button {
  background: rgba(34,49,63,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
}
.carousel-controls button:hover {
  background: #009688;
}

.caption {
  text-align: center;
  font-size: 1.1em;
  color: #009688;
  margin-bottom: 18px;
  font-weight: 500;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  align-items: stretch;
}
.profile {
  flex: 1 1 320px;
  background: #f7f9fb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,49,63,0.04);
  padding: 24px 20px;
  font-size: 1em;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.profile a {
  color: #009688;
  text-decoration: underline;
  font-weight: 600;
}
.news {
  flex: 1 1 320px;
  background: #e3f3db;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,49,63,0.04);
  padding: 24px 20px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-height: 420px;
  overflow-y: auto;
}
.news-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #009688;
  margin-bottom: 10px;
}


/* About Section */
[style*="background:#e3f3db"] {
  font-size: 1.15em !important;
  letter-spacing: 0.2px;
}

/* Publications Section */
[style*="background:#f5cccc"] {
  font-size: 1.15em !important;
  letter-spacing: 0.2px;
}
.publications-scroll {
  background: #f7f9fb !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 2px 8px rgba(34,49,63,0.04);
  height: 180px;
  overflow-y: auto;
  padding: 16px 18px;
  font-size: 1em;
}
.publications-scroll ul {
  margin: 0;
  padding-left: 18px;
}
.publications-scroll li {
  margin-bottom: 12px;
  line-height: 1.6;
}

footer {
  background: #22313f;
  color: #fff;
  margin-top: 40px;
  padding: 30px 0 0 0;
  font-size: 1em;
  border-top: 2px solid #eee;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 16px rgba(34,49,63,0.08);
}
footer .copyright {
  background: #3a2c28;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 1em;
  margin-top: 18px;
  border-radius: 0 0 18px 18px;
}
footer a img {
  filter: grayscale(0.2);
  transition: filter 0.2s, box-shadow 0.2s;
}
footer a:hover img {
  filter: none;
  box-shadow: 0 2px 8px #00968844;
}

@media (max-width: 400px) {
  .container {
    padding: 18px 4vw 18px 4vw;
  }
  .main-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header {
    font-size: 1.3em;
  }
  .title {
    font-size: 1.1em;
  }
  .nav {
    gap: 8px;
    padding: 8px 0;
  }
  .carousel {
    max-width: 100%;
    border-radius: 8px;
  }
  .profile, .news {
    padding: 12px 8px;
    border-radius: 8px;
  }
  .publications-scroll {
    border-radius: 0 0 8px 8px !important;
    padding: 8px 8px;
  }
  footer {
    padding: 18px 0 0 0;
    border-radius: 0 0 8px 8px;
  }
  footer .copyright {
    border-radius: 0 0 8px 8px;
  }
}
/* Publications scroll box styling */
.publications-scroll {
  background: #fff;
  border: 1px solid #e0b7b7;
  border-top: none;
  border-radius: 0 0 4px 4px;
  height: 180px;
  overflow-y: auto;
  padding: 16px 18px;
  font-size: 1em;
  box-sizing: border-box;
}
body {
  background: #f7f7f7;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
/* ...existing code... */
.logo {
  width: 80px;
  margin: 20px auto 0;
  display: block;
}
.title {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  color: #003366;
}
.subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #008080;
  margin-bottom: 10px;
  font-weight: bold;
}
.nav {
  background: #003366;
  color: #ffd700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 1em;
  max-width: 100%;
  box-sizing: border-box;
}
.nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px #d4af37;
  height: 350px;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  opacity: 0;
  transition: left 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
  z-index: 0;
}
.carousel img.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.carousel img.slide-out {
  left: -100%;
  opacity: 0;
  z-index: 0;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-controls button {
  background: #ffd700;
  color: #003366;
  border: none;
  font-size: 2em;
  padding: 0 15px;
  cursor: pointer;
  pointer-events: all;
  border-radius: 50%;
  box-shadow: 0 2px 6px #00336633;
}
.caption {
  text-align: center;
  font-size: 1em;
  margin-top: 5px;
  color: #003366;
  font-weight: bold;
}
.main-content {
  display: flex;
  gap: 20px;
  margin: 20px;
  flex-wrap: wrap;
}
.profile, .news {
  flex: 1 1 300px;
  background: #e6f0ff;
  padding: 15px;
  border-radius: 8px;
  min-width: 280px;
  box-sizing: border-box;
}
.profile {
  background: #e6f0ff;
  color: #003366;
  font-size: 1em;
}
.profile a {
  color: #008080;
  text-decoration: underline;
  font-weight: bold;
}
.news {
  background: #e3f3db;
  color: #222;
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 260px;
  border: 1px solid #c2e0b7;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0;
}
.news-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #008080;
  text-align: left;
  font-size: 1.1em;
  background: #e3f3db;
  padding: 6px 12px;
  border-bottom: 1px solid #c2e0b7;
}
.news-scroll {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 220px;
  padding: 8px 12px 12px 12px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollNews 18s linear infinite;
}
@keyframes scrollNews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-80%); }
}
@media (max-width: 900px) {
  .container {
    padding: 18px 4vw 0 4vw;
  }
  .main-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header {
    font-size: 1.3em;
  }
  .title {
    font-size: 1.1em;
  }
  .nav {
    gap: 8px;
    padding: 8px 0;
  }
  .carousel {
    max-width: 100%;
    border-radius: 8px;
  }
  .profile, .news {
    padding: 12px 8px;
    border-radius: 8px;
  }
  .publications-scroll {
    border-radius: 0 0 8px 8px !important;
    padding: 8px 8px;
  }
  footer {
    padding: 18px 0 0 0;
    border-radius: 0 0 8px 8px;
  }
  footer .copyright {
    border-radius: 0 0 8px 8px;
  }
}
/* Publications scroll box styling */
.publications-scroll {
  background: #fff;
  border: 1px solid #e0b7b7;
  border-top: none;
  border-radius: 0 0 4px 4px;
  height: 180px;
  overflow-y: auto;
  padding: 16px 18px;
  font-size: 1em;
  box-sizing: border-box;
}
body {
  background: #f7f7f7;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px #d4af37;
  padding-bottom: 30px;
}
.header {
  background: #003366;
  color: #ffd700;
  padding: 10px 0;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
}
.logo {
  width: 80px;
  margin: 20px auto 0;
  display: block;
}
.title {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  color: #003366;
}
.subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #008080;
  margin-bottom: 10px;
  font-weight: bold;
}
.nav {
  background: #003366;
  color: #ffd700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 1em;
  max-width: 100%;
  box-sizing: border-box;
}
.nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px #d4af37;
  height: 350px;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  opacity: 0;
  transition: left 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
  z-index: 0;
}
.carousel img.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.carousel img.slide-out {
  left: -100%;
  opacity: 0;
  z-index: 0;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-controls button {
  background: #ffd700;
  color: #003366;
  border: none;
  font-size: 2em;
  padding: 0 15px;
  cursor: pointer;
  pointer-events: all;
  border-radius: 50%;
  box-shadow: 0 2px 6px #00336633;
}
.caption {
  text-align: center;
  font-size: 1em;
  margin-top: 5px;
  color: #003366;
  font-weight: bold;
}
.main-content {
  display: flex;
  gap: 20px;
  margin: 20px;
  flex-wrap: wrap;
}
.profile, .news {
  flex: 1 1 300px;
  background: #e6f0ff;
  padding: 15px;
  border-radius: 8px;
  min-width: 280px;
  box-sizing: border-box;
}
.profile {
  background: #e6f0ff;
  color: #003366;
  font-size: 1em;
}
.profile a {
  color: #008080;
  text-decoration: underline;
  font-weight: bold;
}
.news {
  background: #e3f3db;
  color: #222;
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 260px;
  border: 1px solid #c2e0b7;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0;
}
.news-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #008080;
  text-align: left;
  font-size: 1.1em;
  background: #e3f3db;
  padding: 6px 12px;
  border-bottom: 1px solid #c2e0b7;
}
.news-scroll {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 220px;
  padding: 8px 12px 12px 12px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollNews 18s linear infinite;
}
@keyframes scrollNews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-80%); }
}
@media (max-width: 900px) {
  .container {
    padding: 18px 4vw 0 4vw;
    
  }
  .main-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header {
    font-size: 1.3em;
  }
  .title {
    font-size: 1.1em;
  }
  .nav {
    gap: 8px;
    padding: 8px 0;
  }
  .carousel {
    max-width: 100%;
    border-radius: 8px;
  }
  .profile, .news {
    padding: 12px 8px;
    border-radius: 8px;
  }
  .publications-scroll {
    border-radius: 0 0 8px 8px !important;
    padding: 8px 8px;
  }
  footer {
    padding: 18px 0 0 0;
    border-radius: 0 0 8px 8px;
  }
  footer .copyright {
    border-radius: 0 0 8px 8px;
  }
}
/* Publications scroll box styling */
.publications-scroll {
  background: #fff;
  border: 1px solid #e0b7b7;
  border-top: none;
  border-radius: 0 0 4px 4px;
  height: 180px;
  overflow-y: auto;
  padding: 16px 18px;
  font-size: 1em;
  box-sizing: border-box;
}
body {
  background: #f7f7f7;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px #d4af37;
  padding-bottom: 30px;
}
.header {
  background: #003366;
  color: #ffd700;
  padding: 10px 0;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
}
.logo {
  width: 80px;
  margin: 20px auto 0;
  display: block;
}
.title {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  color: #003366;
}
.subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #008080;
  margin-bottom: 10px;
  font-weight: bold;
}
.nav {
  background: #003366;
  color: #ffd700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 1em;
  max-width: 100%;
  box-sizing: border-box;
}
.nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px #d4af37;
  height: 350px;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  opacity: 0;
  transition: left 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
  z-index: 0;
}
.carousel img.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.carousel img.slide-out {
  left: -100%;
  opacity: 0;
  z-index: 0;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-controls button {
  background: #ffd700;
  color: #003366;
  border: none;
  font-size: 2em;
  padding: 0 15px;
  cursor: pointer;
  pointer-events: all;
  border-radius: 50%;
  box-shadow: 0 2px 6px #00336633;
}
.caption {
  text-align: center;
  font-size: 1em;
  margin-top: 5px;
  color: #003366;
  font-weight: bold;
}
.main-content {
  display: flex;
  gap: 20px;
  margin: 20px;
  flex-wrap: wrap;
}
.profile, .news {
  flex: 1 1 300px;
  background: #e6f0ff;
  padding: 15px;
  border-radius: 8px;
  min-width: 280px;
  box-sizing: border-box;
}
.profile {
  background: #e6f0ff;
  color: #003366;
  font-size: 1em;
}
.profile a {
  color: #008080;
  text-decoration: underline;
  font-weight: bold;
}
.news {
  background: #e3f3db;
  color: #222;
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 260px;
  border: 1px solid #c2e0b7;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0;
}
.news-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #008080;
  text-align: left;
  font-size: 1.1em;
  background: #e3f3db;
  padding: 6px 12px;
  border-bottom: 1px solid #c2e0b7;
}
.news-scroll {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 220px;
  padding: 8px 12px 12px 12px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollNews 18s linear infinite;
}
@keyframes scrollNews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-80%); }
}
@media (max-width: 900px) {
  .container {
    padding: 18px 4vw 0 4vw;
  }
  .main-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header {
    font-size: 1.3em;
  }
  .title {
    font-size: 1.1em;
  }
  .nav {
    gap: 8px;
    padding: 8px 0;
  }
  .carousel {
    max-width: 100%;
    border-radius: 8px;
  }
  .profile, .news {
    padding: 12px 8px;
    border-radius: 8px;
  }
  .publications-scroll {
    border-radius: 0 0 8px 8px !important;
    padding: 8px 8px;
  }
  footer {
    padding: 18px 0 0 0;
    border-radius: 0 0 8px 8px;
  }
  footer .copyright {
    border-radius: 0 0 8px 8px;
  }
}
/* Publications scroll box styling */
.publications-scroll {
  background: #fff;
  border: 1px solid #e0b7b7;
  border-top: none;
  border-radius: 0 0 4px 4px;
  height: 180px;
  overflow-y: auto;
  padding: 16px 18px;
  font-size: 1em;
  box-sizing: border-box;
}
