/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(115, 171, 255, 0.25);
  border-radius: 50%;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-banner .breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-banner .breadcrumb-item {
  font-size: 1.125rem;
}

.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.page-banner .breadcrumb-item.active {
  color: var(--accent-gold);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
  content: '›';
  color: rgba(255, 255, 255, 0.7);
  padding: 0 12px;
}

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

.night-mode .about-modern-section {
  background: transparent;
}

.about-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(65, 143, 222, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.night-mode .about-card {
  background: rgba(44, 62, 80, 0.6);
  border-color: rgba(65, 143, 222, 0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.about-number {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(65, 143, 222, 0.2);
}

.night-mode .about-number {
  background: rgba(65, 143, 222, 0.2);
  color: var(--accent-gold);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-card:hover .about-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(65, 143, 222, 0.9) 0%, rgba(44, 95, 141, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 4rem;
  color: white;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal-black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.night-mode .about-content h3 {
  color: white;
}

.about-content h3 i {
  color: var(--primary-blue);
  font-size: 1.75rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.night-mode .about-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* Info Badges */
.info-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.night-mode .info-badge {
  background: rgba(65, 143, 222, 0.15);
  color: var(--accent-gold);
}

/* Vision List */
.vision-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.vision-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

.night-mode .vision-list li {
  color: rgba(255, 255, 255, 0.85);
}

.vision-list i {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

/* Mission Goals */
.mission-goals {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.goal-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--light-blue);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.night-mode .goal-item {
  background: rgba(65, 143, 222, 0.1);
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(65, 143, 222, 0.15);
}

.goal-item i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.night-mode .goal-item i {
  color: var(--accent-gold);
}

.goal-item span {
  font-weight: 700;
  color: var(--charcoal-black);
  text-align: center;
}

.night-mode .goal-item span {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    padding: 60px 0 40px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .about-modern-section {
    padding: 60px 0;
  }

  .about-card {
    padding: 28px;
  }

  .about-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: 20px;
    right: 20px;
  }

  .about-content h3 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .mission-goals {
    flex-direction: column;
  }

  .goal-item {
    min-width: 100%;
  }
}

.gradient-text {
  background: linear-gradient(to right, #01346a, #6bb4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 1.3;
}