/* Enhanced About Section Styles */
.about {
  position: relative;
  overflow: hidden;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .content {
  padding: 40px 0;
}

.about .content h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  position: relative;
}

.about .content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.about .content p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.about .content .mission-vision {
  margin-top: 35px;
}

.about .content .mission-vision h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about .content .mission-vision h5::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.about .content .mission-vision p {
  font-size: 16px;
  margin-bottom: 25px;
  padding-left: 18px;
}

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

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

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

.about .info-items {
  margin-top: 30px;
}

.about .info-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about .info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.about .info-item i {
  font-size: 28px;
  color: var(--accent-color);
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 34, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.about .info-item div h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.about .info-item div p {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
}

/* Stats Enhancement */
.about .stats-highlight {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  color: white;
}

.about .stats-highlight h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.about .stats-highlight p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .about .content {
    padding: 30px 0;
  }
  
  .about .content h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about .content {
    padding: 20px 0;
    text-align: center;
  }
  
  .about .content h3 {
    font-size: 28px;
  }
  
  .about .content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about .content p {
    font-size: 16px;
  }
  
  .about .info-item {
    padding: 20px;
    text-align: center;
  }
  
  .about .info-item i {
    margin: 0 auto 15px auto;
  }
  
  .about .info-items {
    margin-top: 40px;
  }
}

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

.about .content,
.about .about-image,
.about .info-item {
  animation: fadeInUp 0.6s ease-out;
}

.about .info-item:nth-child(2) {
  animation-delay: 0.1s;
}

.about .info-item:nth-child(3) {
  animation-delay: 0.2s;
}

.about .info-item:nth-child(4) {
  animation-delay: 0.3s;
}