/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f5f8fc;
  color: #1c2e4a;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: #005A8B;
  text-decoration: none;
}

.section {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #005A8B;
  margin-bottom: 30px;
}

/* Header / Hero */
.hero {
  background-color: #132245;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero .summary {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1rem;
  line-height: 1.6;
}

.hero .team-photo {
  width: 320px;
  margin-top: 35px;
  border-radius: 20px;
}

.explore-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background: #005A8B;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* Dataset Grid */
.dataset-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.dataset-card {
  background: white;
  border-left: 5px solid #005A8B;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dataset-images img {
  width: 80px;
  margin: 5px;
  border-radius: 4px;
}

/* Prompt Section */
.prompt-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.prompt-block {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-left: 4px solid #005A8B;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Experiments Tabs */
.experiment-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #005A8B;
  background: white;
  color: #005A8B;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.tab-btn.active {
  background: #005A8B;
  color: white;
}

.experiment-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.exp-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  border-left: 5px solid #005A8B;
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Results Section */
#accuracyChart {
  display: block;
  margin: 0 auto 20px;
  max-width: 700px;
}

.key-findings {
  max-width: 600px;
  margin: 0 auto;
  background: #e8f2fc;
  padding: 20px;
  border-left: 5px solid #005A8B;
  border-radius: 10px;
}

/* Limitations & Future Work */
.limit-future-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.limitations, .future-work {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-left: 4px solid #005A8B;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.member-card {
  background: #fff;
  padding: 20px;
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.member-card img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #132245;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #a3d2ff;
  margin: 0 15px;
  font-weight: 500;
}

.footer-links img {
  vertical-align: middle;
  margin-left: 10px;
}
/* ========================= */
/* ADDITIONAL TEAM STYLES */
/* ========================= */

.team-name {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #73f9fe; /* Yellow from your color palette */
  text-align: center;
}

.team-members {
  text-align: center;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.large-photo {
  width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.results-img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.crew-container {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.crew-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #42eefe;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.crew-names {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 5px;
  letter-spacing: 1px;
}

.team-photo {
  margin: 1rem auto;
  display: block;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.team-photo:hover {
  transform: scale(1.03);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-list {
max-height: 200px;
overflow-y: auto;
padding-right: 10px;
margin-top: 10px;
scrollbar-width: thin;
scrollbar-color: #005A8B #f0f0f0;
}

.scroll-list::-webkit-scrollbar {
width: 8px;
}
.scroll-list::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 5px;
}
.scroll-list::-webkit-scrollbar-thumb {
background-color: #005A8B;
border-radius: 4px;
}

.scroll-fade {
animation: fadeInUp 0.7s ease-in-out both;
}

@keyframes fadeInUp {
0% {
  opacity: 0;
  transform: translateY(20px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}
/* ========================= */
/* ADDITIONAL TEAM STYLES */
/* ========================= */

.team-name {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #42f5fe; /* Yellow from your color palette */
  text-align: center;
}

.team-members {
  text-align: center;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.large-photo {
  width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.results-img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.crew-container {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.crew-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #42e2fe;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.crew-names {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 5px;
  letter-spacing: 1px;
}

.team-photo {
  margin: 1rem auto;
  display: block;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.team-photo:hover {
  transform: scale(1.03);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-list {
max-height: 200px;
overflow-y: auto;
padding-right: 10px;
margin-top: 10px;
scrollbar-width: thin;
scrollbar-color: #005A8B #f0f0f0;
}

.scroll-list::-webkit-scrollbar {
width: 8px;
}
.scroll-list::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 5px;
}
.scroll-list::-webkit-scrollbar-thumb {
background-color: #005A8B;
border-radius: 4px;
}

.scroll-fade {
animation: fadeInUp 0.7s ease-in-out both;
}

@keyframes fadeInUp {
0% {
  opacity: 0;
  transform: translateY(20px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}
/* ====================== */
/* FOOTER TEAM SECTION */
/* ====================== */

.footer {
  background-color: #131c3b;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background-color: #1e2a4a;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #75f3f8;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.team-member p {
  font-weight: bold;
  margin-bottom: 10px;
  color: #67d5f1;
}

.social-icons a {
  margin: 0 8px;
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #74e4f5;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(0,91,150,0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.experiment-tab-content {
  display: none;
}

.experiment-tab-content.active {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.exp-card {
  flex: 1 1 280px;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #005A8B;
}


.experiment-card-group {
  display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.experiment-scroll-area {
  max-height: 500px; /* Adjust as needed */
  overflow-y: auto;
  margin-top: 20px;
  padding-right: 10px;
}

.experiment-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.experiment-scroll-area::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 10px;
}

.experiment-scroll-area::-webkit-scrollbar-track {
  background-color: transparent;
}
.dataset-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.dataset-card {
  background: white;
  border-left: 5px solid #005A8B;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.dataset-card:hover {
  transform: translateY(-5px);
}

.dataset-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #132245;
}

.dataset-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.dataset-images {
  display: flex;
  justify-content: space-between;
}

.dataset-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.prompt-block {
  background: #fff;
  padding: 20px;
  width: 320px;
  border-left: 5px solid #005A8B;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.scroll-list {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 10px;
  list-style: none;
}

.scroll-list::-webkit-scrollbar {
  width: 8px;
}

.scroll-list::-webkit-scrollbar-thumb {
  background-color: #005A8B;
  border-radius: 4px;
}

.scroll-list::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

.tag {
  display: block;
  background-color: #e8f2fc;
  color: #005A8B;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid #bcdff8;
  margin: 5px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tag:hover {
  background-color: #d3e9fb;
}

.click-info {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #f0f7ff;
  border-left: 4px solid #005A8B;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #1c2e4a;
}

.scroll-box {
  max-height: 120px;
  overflow-y: auto;
}
.tag {
  display: inline-block;
  padding: 5px 10px;
  background: #e0f0ff;
  margin: 5px;
  border-radius: 15px;
  cursor: pointer;
}

.click-info {
  margin-top: 10px;
  padding: 10px;
  background-color: #f0f4f9;
  border-left: 4px solid #005A8B;
  display: none;
  border-radius: 6px;
}

.exp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.experiment-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.exp-card {
  width: 280px;
  padding: 20px;
  background: white;
  border: 2px solid #005A8B;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
  
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
  text-align: justify;
  line-height: 1.9;
  font-size: 1.1rem;
  color: #ffffff;
}

.about-section p {
  margin-bottom: 24px;
}

.custom-list {
  padding-left: 40px;
  margin-bottom: 24px;
  list-style-type: disc;
  text-align: justify;
}

.center-button {
  text-align: center;
  margin-top: 35px;
}

.btn {
  background-color: #005A8B;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn:hover {
  background-color: #0074b1;
}


