/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.min-vh-50 {
  min-height: 50vh;
}

.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: rgba(255, 255, 255, 0.6);
}

/* About Content */
.about-content {
  padding: 2rem 0;
}

.about-image {
  position: relative;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 10px 20px;
  box-shadow: var(--shadow-medium);
  animation: floatBadge 3s ease-in-out infinite;
  font-weight: 600;
  color: #1f2937;
}

.floating-badge i {
  color: #3b82f6;
  margin-right: 8px;
}

.badge-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20px;
  left: 20px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.achievement-item {
  padding: 1rem;
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.mission-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.vision-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.mission-points,
.vision-points {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mission-points li,
.vision-points li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

/* Core Values */
.value-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Team Section */
.team-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.team-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-image:hover .team-overlay {
  opacity: 1;
}

.team-image:hover img {
  transform: scale(1.1);
}

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

.team-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.team-role {
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Achievement Cards */
.achievement-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.plus,
.percent {
  font-size: 2rem;
  color: #10b981;
}

.achievement-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-marker {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -30px;
}

.timeline-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 30px;
  width: 0;
  height: 0;
  border-right: 10px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem !important;
    padding-right: 0 !important;
  }

  .timeline-marker {
    left: 0 !important;
    right: auto !important;
  }

  .timeline-content::before {
    left: -10px !important;
    right: auto !important;
    border-right: 10px solid white !important;
    border-left: none !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-card,
  .vision-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .value-card {
    margin-bottom: 2rem;
  }

  .team-card {
    margin-bottom: 2rem;
  }

  .achievement-card {
    margin-bottom: 2rem;
  }

  .floating-badge {
    position: static;
    display: inline-block;
    margin: 0.5rem;
    animation: none;
  }
}
