/* About Page Styles */
.about-page {
  padding: calc(var(--header-height) + 2rem) 0 4rem;
}

/* Hero Banner */
.about-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), 
              url('/images/bsf-project.jpg') center/cover no-repeat;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Company Overview */
.company-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.overview-content h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.overview-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.overview-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.overview-image:hover img {
  transform: scale(1.03);
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mission-card, .vision-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
}

.mission-card .icon, .vision-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Core Values */
.core-values {
  margin-bottom: 4rem;
}

.core-values h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  margin-bottom: 4rem;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bio {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Achievements */
.achievements {
  margin-bottom: 4rem;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.label {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .company-overview {
    grid-template-columns: 1fr;
  }
  
  .overview-image {
    order: -1;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 250px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .values-grid, .team-grid, .achievement-stats {
    grid-template-columns: 1fr;
  }
}


/* // Add this to your existing CSS for animations */
.animate {
  animation: fadeInUp 0.8s ease forwards;
}

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

.company-overview, .mission-card, .vision-card, .value-item, .team-member, .stat-item {
  opacity: 0;
}