/* Vision & Mission Section Styles */

.vision-mission-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f4d03f;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.vision-mission-container {
  position: relative;
}

.vision-mission-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #f4d03f, #f39c12);
}

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

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.card-icon {
  position: relative;
  margin-right: 20px;
}

.card-icon i {
  font-size: 36px;
  color: #f4d03f;
  z-index: 2;
  position: relative;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(244, 208, 63, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.card-title-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.card-headline {
  font-size: 16px;
  color: #f4d03f;
  margin: 5px 0 0 0;
  font-weight: 500;
}

.card-content {
  padding: 20px 0;
}

.card-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-point {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.value-point:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.point-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.point-icon i {
  font-size: 20px;
  color: #f4d03f;
}

.point-content {
  display: flex;
  flex-direction: column;
}

.point-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.point-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.divider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.vertical-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 200px;
}

.divider-dot {
  width: 12px;
  height: 12px;
  background: #f4d03f;
  border-radius: 50%;
  margin: 10px 0;
}

.divider-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #f4d03f, #f39c12);
  min-height: 100px;
}

@media (max-width: 992px) {
  .divider-container {
    display: none;
  }
  
  .vision-mission-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .vision-mission-card {
    padding: 30px 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .card-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
