/* About Page Styles */
.section_subtitle {
  color: #2572ff;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

/* Hero Section */
.about-hero {
  position: relative;
  overflow: hidden;
}

.experience-box {
  background: linear-gradient(135deg, #2572ff, #00c6ff);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(37, 114, 255, 0.15);
  transition: all 0.3s ease;
}

.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 114, 255, 0.2);
}

/* Service Cards */
.service-card, .export-card, .value-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.service-card:hover, .export-card:hover, .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon, .export-icon, .value-icon {
  width: 80px;
  height: 80px;
  background: rgba(37, 114, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #2572ff;
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.export-card:hover .export-icon,
.value-card:hover .value-icon {
  background: #2572ff;
  color: #fff;
  transform: scale(1.1);
}

.service-list, .export-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.service-list li, .export-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95rem;
}

.service-list li:before, .export-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2572ff;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2572ff, #00c6ff);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .service-card, .export-card, .value-card {
    margin-bottom: 30px;
  }
  
  .experience-box {
    position: relative !important;
    margin-top: 30px;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
  }
}

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

.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* Button Styles */
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #2572ff;
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: #2572ff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
