/* About Page Specific Styles */

/* Page Header with Company Theme */
.page-header {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "$";
  position: absolute;
  font-size: 400px;
  bottom: -150px;
  right: -50px;
  font-weight: bold;
  opacity: 0.05;
  color: var(--white);
  line-height: 0.8;
}

.page-header::after {
  content: "%";
  position: absolute;
  font-size: 300px;
  top: -80px;
  left: -50px;
  font-weight: bold;
  opacity: 0.05;
  color: var(--white);
  line-height: 0.8;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: var(--white);
}

.page-header p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Intro Section with Interactive Elements */
.about-intro {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-intro::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(232, 159, 113, 0.05);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 30px;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--secondary);
}

.about-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--black);
  line-height: 1.8;
}

.about-content p:first-of-type {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&auto=format&fit=crop&w=900&q=80")
    center/cover;
  clip-path: polygon(0 15%, 85% 0, 100% 85%, 15% 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shape-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  clip-path: polygon(0 15%, 85% 0, 100% 85%, 15% 100%);
  z-index: -1;
  opacity: 0.2;
  transform: scale(1.05);
}

/* Mission Section with Interactive Cards */
.mission {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--secondary);
}

.mission h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.mission-statement {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
  background-color: var(--white);
  padding: 40px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.mission-statement::before {
  content: '"';
  position: absolute;
  top: -35px;
  left: 30px;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.mission-statement p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--black);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid transparent;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  height: 5px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s ease;
  z-index: 2;
}

.value-card:hover::before {
  width: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 25px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--secondary);
  transform: rotateY(180deg);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.value-card p {
  font-size: 1.1rem;
  color: var(--black);
}

/* Team Section with Modern Cards */
.team {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.team h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 70px;
  color: var(--primary);
  position: relative;
}

.team h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background-color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-member::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.member-image {
  position: relative;
  margin-bottom: 25px;
}

.image-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member:hover .image-placeholder {
  border-color: var(--secondary);
}

.member-title {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.member-bio {
  font-size: 1rem;
  margin: 0 20px;
  color: var(--black);
  line-height: 1.6;
}

/* Industry Section with Modern Layout */
.industry {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.industry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.industry h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
  color: var(--primary);
  position: relative;
}

.industry-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.industry-area {
  background-color: var(--white);
  text-align: center;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.industry-area::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: rgba(122, 78, 139, 0.03);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-area:hover {
  transform: translateY(-10px);
}

.industry-area:hover::after {
  top: -50px;
  right: -50px;
}

.industry-area i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.industry-area:hover i {
  color: var(--secondary);
  transform: scale(1.2);
}

.industry-area h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--black);
}

.industry-area p {
  font-size: 1.05rem;
  color: var(--black);
}

/* Action Buttons for About Page */
.about-actions {
  padding: 60px 0;
  background-color: var(--white);
  text-align: center;
}

.about-actions .container {
  max-width: 800px;
}

.about-actions h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.about-actions p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--black);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.action-buttons .btn {
  min-width: 200px;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
    margin-top: 30px;
  }

  .mission-statement {
    padding: 30px;
  }

  .mission-statement p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .industry-area {
    padding: 30px 20px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 576px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .mission h2,
  .team h2,
  .industry h2 {
    font-size: 2.2rem;
  }

  .mission-statement p {
    font-size: 1.2rem;
  }
}
