/* About Section Styles */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
  opacity: 0.5;
}

.about-content {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
}

.section-header {
  margin-bottom: 30px;
}

.section-subtitle {
  color: #007cba;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #007cba, #0056b3);
  border-radius: 2px;
}

.section-title {
  color: #2c3e50;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-text {
  margin: 30px 0;
}

.about-text p {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-item i {
  color: #28a745;
  font-size: 18px;
  margin-right: 15px;
  width: 20px;
}

.feature-item span {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
}

.about-action {
  margin-top: 40px;
}

.about-action .btn {
  padding: 12px 35px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
  background: linear-gradient(45deg, #007cba, #0056b3);
  box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
  min-width: auto;
  width: auto;
}

.about-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
  text-decoration: none;
  color: #fff;
}

/* Image Section */
.about-image-wrapper {
  position: relative;
  padding: 40px 20px;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  min-width: 80px;
}

.stat-item h3 {
  color: #007cba;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-item p {
  color: #5a6c7d;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    padding: 20px 15px;
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .stats-overlay {
    position: static;
    transform: none;
    margin-top: 20px;
    gap: 20px;
  }
  
  .stat-item {
    min-width: 60px;
  }
  
  .stat-item h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .stats-overlay {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item:hover {
    transform: none;
  }
}