/* Enhanced About Section with Feature Points */
.about-section {
  padding: 120px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #050238;
  text-shadow: 0 2px 10px rgba(108, 99, 255, 0.1);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Main Content Layout */
.about-main-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Image Column (40%) - Simplified */
.about-image-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
}

/* Content Column (60%) */
.about-content-column {
  width: 60%;
}

/* Enhanced Nav Pills - Desktop */
.about-nav-pills {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  width: 100%;
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.nav-pill {
  padding: 12px 24px;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-pill.active {
  color: #050238;
  background: rgba(108, 99, 255, 0.05);
}

.nav-pill.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

.nav-pill:hover:not(.active) {
  color: #4b5563;
  background: rgba(108, 99, 255, 0.03);
}

/* Feature Points Styling */
.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-text h4 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-text p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Content Styling */
.content-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.content-text {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.highlight-text {
  background: var(--accent-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* Mission Specific Styles */
.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid rgba(4, 25, 75, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(2, 27, 56, 0.1);
}

.value-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.value-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Mobile Nav Pills (under image) */
.mobile-nav-pills {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.mobile-nav-pills .nav-pill {
  margin: 0 5px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .about-main-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .content-title {
    font-size: 2rem;
  }
  
  .logo-image {
    max-width: 250px;
  }
  
  .feature-point {
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .about-main-content {
    flex-direction: column;
  }
  
  .about-image-column, 
  .about-content-column {
    width: 100%;
  }
  
  /* Hide desktop nav pills on mobile */
  .about-nav-pills {
    display: none;
  }
  
  /* Show mobile nav pills */
  .mobile-nav-pills {
    display: flex;
  }
  
  .logo-image {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  .feature-point {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .content-title {
    font-size: 1.8rem;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
  }
  
  .feature-text h4 {
    font-size: 1.2rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .mobile-nav-pills .nav-pill {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}