/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 60px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.logo-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    transition: transform 0.3s ease;
    border-radius: 10px;
    object-fit: cover;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #2563eb;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    /* margin-top: 0.5rem; */ /* Removed to prevent gap */
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #2563eb;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Navigation submenu styles */
.nav-item {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
}

.nav-item:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
}

.submenu .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.submenu .nav-link:hover {
    background: #f8fafc;
    color: #2563eb;
}

/* Hide any login/signup buttons that might still be present */
.nav-item a[href*="login"],
.nav-item a[href*="register"],
.nav-item a[href*="signup"],
.nav-item a[href*="auth"] {
    display: none !important;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-header .fas {
  color: #4f46e5;
  font-size: 2rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a2e; /* Darker fallback background */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-height: 100vh;
    min-width: 100vw;
    display: block;
    background: #667eea; /* Video fallback */
    filter: brightness(0.6); /* Darken the video */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for better text contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px); /* Slight blur for depth */
}

.hero-container {
    max-width: 1200px;
    margin: 0;
    padding: 0 60px;
    width: 100%;
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #4f46e5;
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(79, 70, 229, 0.5);
    margin-left: 5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

/* Icons Styling */ 

.card-icon {
  background: rgba(0, 150, 166, 0.12);  /* soft teal tint */
  padding: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.benefit-icon {
  color: #0C2A4A;  /* navy blue */
  font-size: 1.8rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.feature i {
  font-size: 1.5rem;
  color: #818cf8;
  background: rgba(129, 140, 248, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Assessment Cards */
.assessment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.assessment-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.assessment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.assessment-card.primary {
  border-top: 4px solid #4f46e5;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4f46e5;
}

.assessment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.assessment-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.assessment-card .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.5rem;
}

/* Benefits Section */
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit i {
  font-size: 1.75rem;
  color: #4f46e5;
  background: #eef2ff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat i {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.stat h3 {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat p {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
  }
  
  .about-stats {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .assessment-cards {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #5b5fe0 100%); /* updated gradient */
  color: white;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-hero .highlight {
  color: #fbbf24;
  position: relative;
  display: inline-block;
}

.about-hero .lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.95;
}

/* Mission Statement */
.mission-statement {
  padding: 4rem 0;
  background: #f8fafc;
}

.mission-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-icon {
  font-size: 3rem;
  color: #4f46e5;
  background: #eef2ff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-content {
  flex: 1;
}

.mission-title {
  color: #1e293b;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.5rem 0;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid #4f46e5;
}

.highlight-text {
  color: #4f46e5;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(79, 70, 229, 0.2);
  z-index: -1;
  border-radius: 2px;
}

/* About Content */
.about-content-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.about-grid {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
  padding: 1.5rem;
  border-radius: 12px;
}

.about-block:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.75rem;
  color: #4f46e5;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-block:hover .icon-wrapper {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: #e0e7ff;
  transform: scale(1.1);
}

.about-block h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-block p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-size: 1.1rem;
}

.about-image {
  position: sticky;
  top: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Values Section */
.values-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 1.5rem;
  background: #eef2ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover i {
  background: #4f46e5;
  color: white;
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.value-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Policies Section */
.policies-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.policy-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.policy-card i {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 1.5rem;
  background: #eef2ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.policy-card:hover i {
  background: #4f46e5;
  color: white;
  transform: scale(1.1);
}

.policy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.policy-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.newsletter-section .container {
  max-width: 850px;
  background: #ffffff;
  padding: 3rem 3.5rem;
  border-left: 6px solid #4f46e5;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInUp 1s ease both;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

/* ===== BODY TEXT ===== */
.newsletter-text {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.newsletter-coming {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: #64748b;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ===== ANIMATION (shared globally) ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 3rem;
  }
  
  .mission-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .mission-icon {
    margin-bottom: 1.5rem;
  }
  
  .mission-quote {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: auto;
    margin-top: 2rem;
    min-height: 500px;
    padding: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero .lead {
    font-size: 1.25rem;
  }
  
  .mission-quote {
    font-size: 1.25rem;
    padding-left: 1rem;
  }
  
  .about-image {
    min-height: 450px;
    padding: 1rem;
  }
}

/* ===== CHAIR LETTER SECTION ===== */
.chair-letter-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.chair-letter-section .container {
  max-width: 850px;
  background: #ffffff;
  padding: 3rem 3.5rem;
  border-left: 6px solid #4f46e5;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ===== TITLE ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

/* ===== PARAGRAPHS ===== */
.chair-letter {
  text-align: justify;
  text-indent: 2em;
  color: #475569; /* slightly darker gray-blue */
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

/* ===== SIGNATURE AREA ===== */
.chair-letter:last-child {
  text-indent: 0;
  margin-top: 3rem;
  font-style: italic;
  text-align: right;
  color: #1e293b;
  line-height: 1.6;
  font-weight: 500;
}

.chair-letter:last-child::before {
  content: '';
  display: block;
  width: 50%;
  height: 1px;
  background-color: #cbd5e1;
  margin: 0 auto 1.5rem;
}

/* ===== FADE-IN EFFECT ===== */
.chair-letter-section .container {
  animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.assessment-card, .benefit, .stat {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.assessment-card:nth-child(1) { animation-delay: 0.1s; }
.assessment-card:nth-child(2) { animation-delay: 0.2s; }
.assessment-card:nth-child(3) { animation-delay: 0.3s; }
.benefit:nth-child(1) { animation-delay: 0.1s; }
.benefit:nth-child(2) { animation-delay: 0.2s; }
.benefit:nth-child(3) { animation-delay: 0.3s; }

.video-control-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Careers Section */
.careers {
    padding: 80px 0;
    background: #f8fafc;
}

.education-website {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    margin-top: 50px;
}

.education-website:hover {
    text-decoration: underline;
}

.careers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.careers a {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.career-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.career-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.career-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.career-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Survey Section */
.survey {
    padding: 80px 0;
    background: white;
    margin-top: 60px;
}

.survey h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.survey-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.survey-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.progress-bar {
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 2rem;
    position: relative;
}

.progress-fill {
    background: #2563eb;
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: -30px;
    right: 0;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
}

.progress-detail {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.survey-form {
    margin-bottom: 2rem;
}

.question {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.question h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #2563eb;
    background: #f0f9ff;
}

.option.selected {
    border-color: #2563eb;
    background: #dbeafe;
}

.option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.survey-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    padding: 1rem 0;
}

.survey-navigation .btn {
    min-width: 120px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.survey-navigation .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.survey-navigation .btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#prev-btn {
    background: #64748b;
    border-color: #64748b;
    color: white;
}

#prev-btn:hover:not(:disabled) {
    background: #475569;
    border-color: #475569;
}

#next-btn {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

#next-btn:hover:not(:disabled) {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

#submit-btn {
    background: #059669;
    border-color: #059669;
    color: white;
}

#submit-btn:hover:not(:disabled) {
    background: #047857;
    border-color: #047857;
}

/* Education Website Section */
.edu_website {
    padding: 80px 0;
    background: white;
    margin-top: 60px;
}

.edu_website h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}


/* Results Section */
.results {
    padding: 80px 0;
    background: #f8fafc;
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
}

.primary-result {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.career-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.career-result i {
    font-size: 3rem;
    color: #2563eb;
}

.career-result h4 {
    font-size: 1.5rem;
    color: #1e293b;
}

.career-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.secondary-career {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.detailed-analysis, .next-steps {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detailed-analysis h3, .next-steps h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.detailed-analysis ul, .next-steps ul {
    padding-left: 0.4rem;
    margin-left: 0;
}

.detailed-analysis li, .next-steps li {
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
}

#retake-survey {
    display: block;
    margin: 2rem auto 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    gap: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Competitions Section */

/* ===== ANNUAL COMPETITIONS SECTION ===== */
.annual-competitions-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.annual-competitions-section .container {
  max-width: 850px;
  background: #ffffff;
  padding: 3rem 3.5rem;
  border-left: 6px solid #4f46e5;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInUp 1s ease both;
}

/* ===== IMAGE ===== */
.fsi-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.fsi-image {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
  transition: transform 0.4s ease;
}

.fsi-image:hover {
  transform: scale(1.05);
}

/* ===== TITLE ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

/* ===== BODY TEXT ===== */
.annual_competitions {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-indent: 2em;
}

.annual_competitions:nth-of-type(2) {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.1rem;
  text-align: center;
  text-indent: 0;
}

.annual_competitions:last-of-type {
  font-style: italic;
  color: #64748b;
  text-align: center;
  text-indent: 0;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.partners-section .container {
  max-width: 900px;
  background: #ffffff;
  padding: 3rem 3.5rem;
  border-left: 6px solid #4f46e5;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease both;
}

/* ===== IMAGE ===== */
.partner-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.partner-image {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.partner-image:hover {
  transform: scale(1.02);
}

/* ===== TITLES ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

.partner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 2rem;
}

/* ===== TEXT ===== */
.partner-text {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
  text-indent: 2em;
}

/* ===== BULLET LIST ===== */
.partner-list {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1rem 0 2rem 2em;
}

.partner-list li {
  margin-bottom: 0.8rem;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.sponsors-section .container {
  max-width: 850px;
  background: #ffffff;
  padding: 3rem 3.5rem;
  border-left: 6px solid #4f46e5; /* same purple accent as other pages */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInUp 1s ease both;
}

/* ===== TITLE ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

/* ===== TEXT ===== */
.sponsor_1 {
  font-family: 'Inter', sans-serif;
  color: #64748b;
  font-size: 1.05rem;
  font-style: italic;
  margin-top: 1rem;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sponsor-intro {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 30px;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
}

.contact-form button {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.contact-form button i {
    font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-header p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.contact-items-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f8fafc;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
  background: #e0f2fe;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-item p, .contact-item a {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2563eb;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .contact-items-container {
    flex-direction: row;
    justify-content: center;
  }
  
  .contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;
  }

  .contact-items-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .contact-item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .contact-content {
    padding: 2rem 1.5rem;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

/* Footer Dropdown Styles */
.footer-section .dropdown {
    position: relative;
}

.footer-section .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section .dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-section .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.footer-section .dropdown-menu {
    display: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.footer-section .dropdown:hover .dropdown-menu {
    display: block;
}

.footer-section .dropdown-menu li {
    margin-bottom: 0.25rem;
}

.footer-section .dropdown-menu a {
    font-size: 0.9rem;
    color: #94a3b8 !important;
    display: block;
    padding: 0.25rem 0;
}

.footer-section .dropdown-menu a:hover {
    color: #2563eb !important;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Team Section */
.team {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}



.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Core Values Section  */
.core_values {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.core_values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.core_values-container {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* New Team Section Styles */
.team-section {
    margin-bottom: 4rem;
}

.team-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.team-nav-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 150px;
}

.team-nav-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.team-nav-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hidden {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.team-row {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.row-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.cofounders-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cofounders-grid .team-member-card {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    margin: 0;
    flex-shrink: 0;
}

/* Make cofounder photos match team page square styling */
.cofounders-grid .member-photo-container {
    height: 150px;
    width: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.cofounders-grid .team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.4s ease;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.leadership-grid .team-member-card {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    margin: 0;
    flex-shrink: 0;
}

/* Center entire rows like the example */
.team-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

/* Center Ethan in the first row */
.team-row:first-child .leadership-grid {
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

/* Center the third row of team members */
.team-row:nth-child(3) .leadership-grid {
    justify-content: center;
}



.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.2rem auto 0;
    gap: 0.3rem;
}

.executive-badge {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    font-weight: 700;
    margin-top: 0;
}

.leadership-card {
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.placeholder-card {
    visibility: hidden;
    pointer-events: none;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.7;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    margin: 2rem auto;
    max-width: 800px;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.team-member-card.hidden {
    display: none;
}

.member-photo-container {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.4s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(29, 78, 216, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    gap: 1rem;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.team-member-card:hover .team-member-photo {
    transform: scale(1.15);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.15) rotate(5deg);
}

.quick-view-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.quick-view-btn:hover {
    background: white;
    transform: scale(1.1);
}

.member-status {
    display: none;
}

.team-member-card .social-links {
    display: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.member-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.member-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.1rem;
    flex-shrink: 0;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-badge {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0.2rem 0.2rem 0;
    display: inline-block;
    width: fit-content;
}

.team-member-role {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    flex: 0 1 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-bio {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.expertise-tag {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    transform: translateY(-2px);
}

.member-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-mini {
    text-align: center;
    flex: 1;
}

.stat-number-mini {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label-mini {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.1rem;
    flex-shrink: 0;
    justify-content: center;
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.contact-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.team-stats {
    margin-top: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.team-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.modal-body {
    padding: 2rem;
}

.modal-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2563eb;
}

.modal-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-role {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block !important;
    visibility: visible !important;
}

.modal-bio {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: block !important;
    visibility: visible !important;
}

.modal-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-expertise .expertise-tag {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

/* Team Profile Page */
.team-profile {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.profile-header {
    margin-bottom: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid #e2e8f0;
}

.back-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.profile-photo-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    text-align: center;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.profile-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info {
    padding: 3rem;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.profile-role {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-bio {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.profile-expertise {
    margin-bottom: 2.5rem;
}

.profile-expertise h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.profile-stats .stat-item {
    text-align: center;
}

.profile-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    line-height: 1;
}

.profile-stats .stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.contact-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.linkedin-btn {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.linkedin-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Category Modal */
.category-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.45);
}
.category-modal-content {
    background: #fff;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: left;
}
.category-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.7rem;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
}
.category-modal-close:hover {
    color: #2563eb;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8fafc;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
    border: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    margin-left: 1rem;
}

.notification-close:hover {
    color: #374151;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification.fade-out {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Medical Animation Styles */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.ui8-medical-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  flex-shrink: 0;
  height: 200px;
  margin-bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui8-medical-icon {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
  padding: 1.5rem;
}

.pulse {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.1);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.2);
  animation: pulse 2s infinite;
  width: 100%;
  height: 100%;
}

.circle:nth-child(1) {
  animation-delay: 0s;
}

.circle:nth-child(2) {
  animation-delay: 0.5s;
}

.circle:nth-child(3) {
  animation-delay: 1s;
}

.cross {
  position: relative;
  width: 70px;
  height: 70px;
  z-index: 4;
}

.line {
  position: absolute;
  background-color: #4f46e5;
  border-radius: 4px;
  z-index: 5;
}

.line:first-child {
  width: 100%;
  height: 12px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: pulse 2s infinite;
}

.line:last-child {
  width: 12px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  animation: pulse 2s infinite 0.3s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.alert-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* Responsive Design */
    
    .hero-container {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .video-control-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        margin: 0;
        padding: 1.5rem;
    }
    
    .survey-container {
        padding: 2rem;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .survey-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-header h2 {
        font-size: 2.5rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-info {
        padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.team-member-role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.member-actions {
    margin-top: auto;
}


    
    .category-modal-content {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    
    .team-member-card {
        width: 90vw;
        max-width: 320px;
        height: auto;
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .survey-container {
        padding: 1.5rem;
    }
    
    .question {
        padding: 1.5rem;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-subtitle {
        font-size: 1rem;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
} 
/* ============================
   CHAPTERS PAGE STYLES
   ============================ */

/* Utility fade-in class (reuses your fadeInUp animation) */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

/* Slight stagger option for children inside a fade-in container */
.fade-in-stagger > * {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.fade-in-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.fade-in-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.fade-in-stagger > *:nth-child(3) { animation-delay: 0.15s; }
.fade-in-stagger > *:nth-child(4) { animation-delay: 0.2s; }

/* ---------- Chapters layout ---------- */

.chapters-container {
  min-height: 100vh;
  background: #f8fafc;
  padding-top: 60px; /* fixed navbar height */
}

/* Hero at the top of the Chapters page */
.chapters-container .hero-section {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #ffffff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.chapters-container .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.chapters-container .hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.chapters-container .hero-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* ---------- Registration card ---------- */

.registration-section {
  margin-top: -3rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.registration-card {
  background: #ffffff;
  padding: 2.5rem 2.75rem;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.registration-card h2 {
  color: #0f172a;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.registration-card p {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

/* Button styled to match your brand (purple accent) */
.registration-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
  transition: all 0.25s ease;
}

.registration-btn i {
  font-size: 1.1rem;
}

.registration-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(79, 70, 229, 0.45);
  color: #ffffff;
}

/* ---------- Chapter Guide card ---------- */

.document-section {
  background: #ffffff;
  border-radius: 20px;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* Header bar on top of the embedded doc */
.document-header {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  padding: 1.8rem 2.5rem;
  text-align: center;
  color: #ffffff;
}

.document-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.document-header h2 i {
  font-size: 1.4rem;
}

.document-header p {
  margin: 0;
  font-size: 1.02rem;
  opacity: 0.95;
}

/* Embedded Google Doc */
.document-embed {
  background: #f1f5f9;
}

.document-embed iframe {
  display: block;
  width: 100%;
  border: none;
  background: #ffffff;
}

/* ---------- Additional Resources section ---------- */

.resources-section {
  background: #ffffff;
  padding: 3rem 2.5rem 3.5rem;
  margin: 2.5rem 0 3.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

.resources-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 2.5rem;
}

/* Grid of resource cards */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* Individual resource cards to match sponsors card vibe */
.resource-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  text-align: center;
  border-left: 4px solid #4f46e5; /* same purple accent as sponsors */
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.resource-card i {
  font-size: 2.4rem;
  color: #0096a6; /* teal accent to match logo */
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.resource-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Responsive tweaks for Chapters page ---------- */

@media (max-width: 768px) {
  .chapters-container .hero-section {
    padding: 4.5rem 1.25rem 3rem;
  }

  .chapters-container .hero-content h1 {
    font-size: 2.4rem;
  }

  .chapters-container .hero-content p {
    font-size: 1.02rem;
  }

  .registration-section {
    margin-top: -2.2rem;
  }

  .registration-card {
    padding: 2rem 1.75rem;
  }

  .document-header {
    padding: 1.5rem 1.25rem;
  }

  .document-header h2 {
    font-size: 1.6rem;
    flex-direction: column;
  }

  .document-embed iframe {
    height: 600px;
  }

  .resources-section {
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* Base layout for nav */
.navbar {
  position: sticky; /* or fixed/relative depending on your design */
  top: 0;
  z-index: 100;
  background: #ffffff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

/* Toggle hidden on desktop by default */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
}

/* --- Mobile styles --- */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;            /* pushes it into the right corner */
  }

  .nav-menu {
    position: absolute;
    top: 100%;                    /* directly under navbar */
    right: 1rem;                  /* right-hand corner */
    margin-top: 0.5rem;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    min-width: 190px;
    display: none;                /* hidden by default on mobile */
  }

  .nav-menu.nav-open {
    display: flex;                /* shown when toggle is clicked */
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.6rem 1rem;
  }

  .nav-link:hover {
    background: #f3f4f6;
  }

  /* Optional: make dropdown submenus full-width within the dropdown */
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
  }

  .dropdown-content .nav-link {
    padding-left: 1.5rem;
  }
}

/* Desktop-only: keep your normal hover dropdowns */
@media (min-width: 769px) {
  .nav-menu {
    display: flex;
  }
}
