/* ===== CSS Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb; /* Clean Blue */
  --secondary-color: #1e40af; /* Deep Blue */
  --accent-color: #60a5fa; /* Light Blue Accent */
  --text-dark: #0f172a; /* Almost Black */
  --text-light: #475569; /* Slate Gray */
  --bg-light: #f8fafc; /* Very Light Blue-Gray */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --gradient-primary: linear-gradient(135deg, #2563eb, #1e40af);
  --gradient-light: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.05));
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  padding: 100px 20px;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Translator Animation ===== */
.translator-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.translation-box {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  min-width: 280px;
  transition: var(--transition);
  position: relative;
}

.translation-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.box-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.translation-text {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
  min-height: 50px;
  display: flex;
  align-items: center;
  animation: textFade 4s ease-in-out infinite;
}

@keyframes textFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.translation-arrow {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.language-tags {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.tag {
  background: var(--bg-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--gradient-primary);
  color: white;
}

.hero-graphic {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: 1;
}

.floating-graphic {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== Quick Info Section ===== */
.quick-info {
  padding: 80px 20px;
  background: var(--bg-white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 15px;
  background: var(--bg-light);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== Overview Section ===== */
.overview {
  padding: 80px 20px;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}

.language-network {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== Objectives Section ===== */
.objectives {
  padding: 80px 20px;
  background: var(--bg-white);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.objective-card {
  padding: 40px 30px;
  border-radius: 15px;
  background: var(--bg-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.objective-card:hover::before {
  transform: scaleX(1);
}

.objective-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 10px;
}

.objective-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.objective-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Page Header ===== */
.page-header {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 20px 20px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== Team Section ===== */
.team-section {
  padding: 80px 20px;
}

.bg-light {
  background: var(--bg-light);
}

.chief-investigator {
  display: flex;
  justify-content: center;
}

.team-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  max-width: 100%;
}

.team-card.featured {
  max-width: 500px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card-header {
  padding: 40px;
  background: var(--gradient-light);
  display: flex;
  justify-content: center;
}

.avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-md);
}

.team-card-body {
  padding: 30px;
  text-align: center;
}

.team-card-body h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.institution {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 20px;
}

.team-card-footer {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.expertise-tag {
  background: var(--bg-light);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* ===== Institutions Section ===== */
.institutions-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.institutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.institution-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.institution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.institution-logo {
  margin-bottom: 20px;
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.institution-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.institution-card p {
  color: var(--text-light);
  font-size: 14px;
}

.badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Collaborators Section ===== */
.collaborators-section {
  padding: 80px 20px;
}

.collaborators-content .intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 16px;
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.collaborator-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.collaborator-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.collaborator-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.collaborator-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.collaborator-item p {
  color: var(--text-light);
  font-size: 14px;
}

.state-governments {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.state-governments h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.states-list {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.state-badge {
  background: var(--gradient-light);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
}


/* Consortium Styles - Copper Sulphate Theme */
/* :root {
  --copper-primary: #0d9488;
  --copper-secondary: #0f766e;
  --copper-accent: #14b8a6;
  --copper-light: #ccfbf1;
  --copper-dark: #134e4a;
  --copper-bg: #f0fdfa;
} */

/* Consortium Section */
.consortium-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--copper-bg), #ffffff);
  text-align: center;
}

.lead-badge {
  display: inline-block;
  background: var(--copper-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consortium-section h2 {
  font-size: 36px;
  color: var(--copper-dark);
  margin-bottom: 10px;
}

.consortium-section p {
  color: var(--copper-secondary);
  font-size: 16px;
}

/* Chief Investigator */
.chief-investigator-section {
  padding: 60px 20px;
  background: white;
   transition: all 0.3s ease;
}

.chief-investigator-card {
  max-width: 300px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--copper-light);
  position: relative;
 
}

.chief-investigator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-primary), var(--copper-accent));
  border-radius: 15px 15px 0 0;
}

.chief-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-primary), var(--copper-accent));
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.co-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;   /* centers the circle */
  border: 3px solid #e6e6e6; /* optional border */
}

.co-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.chief-info h3 {
  font-size: 28px;
  color: var(--copper-dark);
  margin-bottom: 10px;
}

.chief-title {
  color: var(--copper-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.chief-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid #e6e6e6;
}

.chief-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.chief-institution {
  color: var(--copper-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.chief-expertise {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.chief-expertise .expertise-tag {
  background: var(--copper-light);
  color: var(--copper-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Co-Investigators */
.co-investigators-section {
  padding: 80px 20px;
  background: var(--copper-bg);
}

.co-investigators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.co-investigator-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.co-investigator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--copper-accent);
}

.co-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-primary), var(--copper-accent));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
}

.co-info h4 {
  font-size: 20px;
  color: var(--copper-dark);
  margin-bottom: 8px;
}

.co-title {
  color: var(--copper-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.co-institution {
  color: var(--copper-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.co-expertise {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.co-expertise .expertise-tag {
  background: var(--copper-light);
  color: var(--copper-primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
}



/* Team Lead Section */
.team-lead-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--copper-bg), #ffffff);
}

.team-lead-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--copper-light);
  position: relative;
}

.team-lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-primary), var(--copper-accent));
  border-radius: 15px 15px 0 0;
}

.team-lead-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-primary), var(--copper-accent));
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.team-lead-info h3 {
  font-size: 28px;
  color: var(--copper-dark);
  margin-bottom: 10px;
}

.team-lead-title {
  color: var(--copper-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-lead-department {
  color: var(--copper-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.team-lead-expertise {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.team-lead-expertise .expertise-tag {
  background: var(--copper-light);
  color: var(--copper-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Team Members Section */
.team-members-section {
  padding: 60px 20px;
  background: white;
}

.team-members-section .section-subtitle {
  color: var(--copper-secondary);
  font-size: 16px;
  margin-top: 10px;
}

.team-members-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.team-member-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--copper-accent);
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-primary), var(--copper-accent));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
}

.member-info h4 {
  font-size: 18px;
  color: var(--copper-dark);
  margin-bottom: 8px;
}

.member-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid #e6e6e6;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.member-title {
  color: var(--copper-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.member-department {
  color: var(--copper-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}

.member-expertise {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.member-expertise span {
  background: var(--copper-light);
  color: var(--copper-primary);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-members-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-members-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-lead-avatar {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
  
  .team-lead-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .team-members-row {
    grid-template-columns: 1fr;
  }
  
  .team-lead-card {
    padding: 30px 20px;
  }
  
  .team-lead-avatar {
    width: 90px;
    height: 90px;
    font-size: 26px;
  }
  
  .team-lead-info h3 {
    font-size: 22px;
  }
}


/* Institutions Section Update */
/* Institutions Grid */
.institutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.institution-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.institution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--copper-accent);
}

.institution-card h4 {
  font-size: 20px;
  color: var(--copper-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.institution-card p {
  color: var(--copper-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--copper-primary), var(--copper-accent));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .institutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .institution-card {
    padding: 25px 15px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .chief-avatar {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
  
  .chief-info h3 {
    font-size: 24px;
  }
  
  .co-investigators-grid {
    grid-template-columns: 1fr;
  }
  
  .consortium-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .chief-investigator-card {
    padding: 30px 20px;
  }
  
  .chief-avatar {
    width: 90px;
    height: 90px;
    font-size: 26px;
  }
  
  .chief-info h3 {
    font-size: 22px;
  }
}
/* [file content end] */

/* ===== Detail Cards (About Page) ===== */
.content-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.detail-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.detail-header {
  background: var(--gradient-light);
  padding: 25px 30px;
  border-left: 4px solid var(--primary-color);
}

.detail-header h2 {
  font-size: 24px;
  color: var(--text-dark);
}

.detail-body {
  padding: 30px;
}

.detail-body h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.detail-body h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.detail-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.detail-body ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.detail-body ul li {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.meta-info {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-light);
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}

.highlight-box {
  background: var(--gradient-light);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===== Domains Grid ===== */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.domain-item {
  text-align: center;
  padding: 25px;
  background: var(--gradient-light);
  border-radius: 12px;
  transition: var(--transition);
}

.domain-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.domain-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.domain-item h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.domain-item p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== Detail Cards ===== */

.detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 24px;
}

.detail-header {
  background: var(--bg-alt);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.detail-header h2 {
  font-size: 20px;
  color: var(--text);
  font-weight: 600;
}

.detail-body {
  padding: 24px;
}

.detail-body h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
}

.detail-body h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}

.detail-body p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.detail-body ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.detail-body ul li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.meta-info {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
}

.highlight-box {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
  border-left: 3px solid var(--primary);
}

.highlight-box h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.highlight-card {
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}


/* ===== Deliverables List ===== */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.deliverable-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.deliverable-number {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.deliverable-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.deliverable-content p {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== Objectives List ===== */
.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.objective-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.objective-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.objective-icon {
  flex-shrink: 0;
}

.objective-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.objective-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Scope Grid ===== */
.highlight-card {
  background: var(--gradient-light);
  border-left: 4px solid var(--primary-color);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.scope-item {
  text-align: center;
}

.scope-item h4 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.large-text {
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Milestones Timeline ===== */
.timeline-overview {
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.timeline-overview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.timeline-progress {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.timeline-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 6px;
  background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
  border-radius: 10px;
  z-index: 1;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.timeline-marker:hover {
  transform: translateY(-5px);
}

.marker-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  margin: 0 auto 15px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.9);
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid #fff;
}

.marker-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #6366f1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.marker-dot.active,
.timeline-marker:hover .marker-dot {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.9), 0 8px 20px rgba(99, 102, 241, 0.3);
  transform: scale(1.15);
}

.marker-dot.active::before,
.timeline-marker:hover .marker-dot::before {
  opacity: 1;
}

.timeline-marker span {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 17px;
  transition: color 0.3s ease;
  display: block;
}

.timeline-marker:hover span {
  color: #6366f1;
}

/* ===== Milestones Section ===== */
.milestones-section {
  padding: 80px 20px;
  scroll-margin-top: 80px;
  position: relative;
}

.milestones-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.year-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.year-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.year-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.year-badge:hover::before {
  left: 100%;
}

.year-badge-2 {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.year-badge-3 {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.year-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.year-header p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.milestone-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.milestone-card:hover::before {
  transform: scaleX(1);
}

.milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
  border-color: #e0e7ff;
}

.milestone-card.highlight {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border: 2px solid #c084fc;
  position: relative;
}

.milestone-card.highlight::after {
  content: '⭐';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.milestone-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-icon {
  transform: scale(1.15) rotate(5deg);
}

.milestone-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.4;
}

.milestone-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.milestone-card ul li {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  transition: color 0.3s ease;
}

.milestone-card:hover ul li {
  color: #4b5563;
}

.milestone-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ede9fe;
  border-radius: 50%;
  font-size: 12px;
}

.milestone-card ul li:last-child {
  margin-bottom: 0;
}

/* ===== Metrics Section ===== */
.metrics-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.metrics-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.metrics-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.metrics-section .section-header h2 {
  color: white;
}

.metrics-section .header-line {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transition: left 0.6s ease;
}

.metric-card:hover::before {
  left: 100%;
}

.metric-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.metric-icon {
  font-size: 56px;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.metric-value {
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -2px;
}

.metric-label {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 15px;
  color: var(--text-light);
}

/* ===== Background Light Section ===== */
.bg-light {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #faf5ff 100%);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .timeline-bar::before {
    left: 5%;
    right: 5%;
  }

  .marker-dot {
    width: 40px;
    height: 40px;
  }

  .timeline-marker span {
    font-size: 15px;
  }

  .year-header h2 {
    font-size: 32px;
  }

  .year-header p {
    font-size: 16px;
  }

  .milestones-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .milestone-card {
    padding: 30px;
  }

  .metric-value {
    font-size: 48px;
  }

  .metric-label {
    font-size: 17px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .timeline-overview {
    padding: 60px 15px 40px;
  }

  .year-badge {
    padding: 10px 25px;
    font-size: 16px;
  }

  .year-header h2 {
    font-size: 28px;
  }

  .milestone-icon {
    font-size: 40px;
  }

  .milestone-card h3 {
    font-size: 18px;
  }

  .milestone-card ul li {
    font-size: 14px;
  }
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
max-width: 1200px;
margin: 0 auto;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-dark);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.info-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}


/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 40px 20px 15px;
}

.footer-content {
  display: grid;  
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 25px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  color: white;
}

.footer-section h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.contact-compact {
  margin-bottom: 10px;
}

.contact-details {
  font-size: 12px;
  line-height: 1.8;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto;
    max-width: 100px;
  }
  
  .footer-section h3 {
    font-size: 20px;
  }
}

/* ===== Users Grid Section ===== */
.users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.user-item {
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.user-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.user-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.user-item:hover::before {
  transform: scaleX(1);
}

.user-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  transition: var(--transition);
}

.user-item:hover .user-icon {
  transform: scale(1.1);
}

.user-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

/* ===== Enhanced Team Page Styles ===== */
.chief-investigator-section {
  padding: 60px 20px;
  background: var(--gradient-light);
}

.chief-investigator-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.chief-investigator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.chief-investigator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.chief-avatar {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}

.chief-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chief-investigator-card:hover .chief-avatar {
  transform: scale(1.05);
  border-color: var(--secondary-color);
}

.chief-info {
  flex: 1;
}

.chief-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chief-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.chief-institution {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.team-members-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.team-members-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member-card {
  background: var(--bg-light);
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: var(--primary-color);
}

.team-member-card:hover::before {
  transform: scaleX(1);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.member-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.team-member-card:hover .member-avatar {
  transform: scale(1.1);
  border-color: transparent;
}

.team-member-card:hover .member-avatar::after {
  opacity: 1;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.member-title {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== Enhanced Consortium Page Styles ===== */
.co-investigators-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.co-investigators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.co-investigator-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.co-investigator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}

.co-investigator-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: var(--primary-color);
}

.co-investigator-card:hover::before {
  transform: scaleY(1);
}

.co-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.co-investigator-card:hover .co-avatar {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.co-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.co-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.co-institution {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.co-expertise {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.expertise-tag {
  background: var(--gradient-light);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.institutions-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.institutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.institution-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.institution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  transition: var(--transition);
}

.institution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.institution-card:hover::after {
  height: 100%;
}

.institution-logo {
  margin-bottom: 20px;
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: var(--transition);
}

.institution-card:hover .logo-placeholder {
  transform: rotate(360deg) scale(1.1);
  background: var(--gradient-primary);
}

.institution-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.institution-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.state-governments {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
  padding: 40px;
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.state-governments h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.states-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.state-badge {
  background: var(--gradient-light);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.state-badge:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 30px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .translator-animation {
    flex-direction: column;
  }

  .translation-arrow svg {
    transform: rotate(90deg);
  }

  .overview-content {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-graphic {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .milestones-grid,
  .objectives-grid,
  .team-grid,
  .users-grid,
  .team-members-row,
  .co-investigators-grid,
  .institutions-grid {
    grid-template-columns: 1fr;
  }

  .chief-investigator-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .chief-avatar {
    width: 150px;
    height: 150px;
  }

  .chief-info h3 {
    font-size: 26px;
  }

  .co-investigator-card:hover {
    transform: translateY(-5px);
  }

  .states-list {
    gap: 10px;
  }

  .state-badge {
    padding: 10px 18px;
    font-size: 14px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .metric-value {
    font-size: 42px;
  }
}