/* Mission Section Styles */
.mission {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><text x="50%" y="50%" font-size="12" text-anchor="middle" dominant-baseline="middle">E=mc²</text></svg>');
  opacity: 0.05;
  z-index: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2e5c89;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e64a2e;
  border-radius: 2px;
}

/* Mission Content */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 80px;
}

/* Founder Card */
.founder-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.founder-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.founder-info {
  padding: 20px;
  text-align: center;
}

.founder-info h3 {
  color: #2e5c89;
  margin-bottom: 5px;
}

.founder-title {
  color: #e64a2e;
  font-weight: 600;
  margin-bottom: 15px;
}

.founder-quote {
  font-style: italic;
  color: #666;
  border-left: 3px solid #44c0b6;
  padding-left: 15px;
  margin-top: 15px;
}

/* Tabs */
.tabs-container {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}

.tab-btn {
  flex: 1;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #e64a2e;
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: #2e5c89;
}

.tab-btn.active::after {
  width: 100%;
}

.tab-btn:hover {
  background: rgba(68, 192, 182, 0.1);
  color: #2e5c89;
}

.tab-content {
  padding: 30px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

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

.icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-title i {
  font-size: 2rem;
  color: #44c0b6;
  margin-right: 15px;
}

.icon-title h3 {
  color: #2e5c89;
}

.tab-pane p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

/* Mission Stats */
.mission-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e64a2e;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

/* Vision Features */
.vision-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.vision-feature {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vision-feature i {
  font-size: 2rem;
  color: #44c0b6;
  margin-bottom: 15px;
}

.vision-feature h4 {
  color: #2e5c89;
  margin-bottom: 10px;
}

.vision-feature p {
  color: #666;
  font-size: 0.9rem;
}

/* Impact Timeline */
.impact-timeline {
  margin-top: 30px;
  position: relative;
}

.impact-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 3px;
  background: #44c0b6;
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.timeline-year {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e64a2e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-grow: 1;
}

.timeline-content h4 {
  color: #2e5c89;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  margin: 80px 0;
}

.values-section h3 {
  text-align: center;
  color: #2e5c89;
  margin-bottom: 40px;
  font-size: 2rem;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #44c0b6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.value-card h4 {
  color: #2e5c89;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Mission CTA */
.mission-cta {
  text-align: center;
  background: #2e5c89;
  color: white;
  padding: 60px 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.mission-cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  background-color: white;
  color: #2e5c89;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-content {
    grid-template-columns: 1fr;
  }

  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .tabs {
    flex-direction: column;
  }

  .mission-stats {
    flex-direction: column;
    gap: 20px;
  }

  .values-container {
    grid-template-columns: 1fr;
  }

  .impact-timeline::before {
    left: 35px;
  }

  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
