/* About Page Specific Styles */

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./asset/bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.brand {
  display: grid;
  grid-template-columns: 1fr 4fr; 
  gap: 2rem; 
  align-items: center;
}


/* Our Story Section */
.about-story {
  padding: 100px 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--text-color);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

/* Mission and Values Section */
.mission-values {
  padding: 100px 0;
  background-color: var(--gray-color);
}

.mission-box {
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.mission-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.mission-box p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

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

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 51, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.value-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Approach Section */
.approach-section {
  padding: 100px 0;
  background-color: white;
}

.approach-steps {
  max-width: 900px;
  margin: 40px auto 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -20px;
  width: 2px;
  background-color: rgba(0, 51, 102, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Awards Section */
.awards-section {
  padding: 100px 0;
  background-color: var(--gray-color);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.award-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.award-item p {
  color: #666;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .btn {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}




.cta-content .btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-header h1 {
    font-size: 40px;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 50px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .about-story,
  .mission-values,
  .approach-section,
  .awards-section {
    padding: 70px 0;
  }

  .about-text h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .mission-box {
    padding: 30px;
  }

  .mission-box h3 {
    font-size: 24px;
  }

  .mission-box p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 18px;
  }

  .about-text h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 15px;
  }

  .step:not(:last-child)::after {
    left: 25px;
    top: 50px;
    height: calc(100% - 10px);
  }
}
