/* =====================================================
   ABOUT PAGE LAYOUT
===================================================== */

.about-page {
  max-width: 1300px;
  width: 92%;
  margin: auto;
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
}

.page-title {
  font-size: 48px;
  color: #38bdf8;
}

.page-subtitle {
  color: #9ca3af;
  margin-bottom: 50px;
}


/* =====================================================
   HERO SPLIT SECTION
===================================================== */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding: 50px;
  border-radius: 22px;
  margin-bottom: 80px;

  box-shadow:
    0 0 40px rgba(56,189,248,0.12),
    0 0 80px rgba(56,189,248,0.05);
}


/* =====================================================
   LEFT SIDE (CORE AI DOMAINS FIXED)
===================================================== */

.engineer-card {
  padding: 50px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow:
    0 0 30px rgba(56,189,248,0.15),
    0 0 60px rgba(56,189,248,0.05);
}

.engineer-card h3 {
  margin-bottom: 35px;
  color: #38bdf8;
  font-size: 22px;
  text-align: center;
}

.domain-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.domain-list li {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 500;

  padding: 18px 22px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.3s ease;
}

.domain-list li:hover {
  background: rgba(56,189,248,0.08);
  border-color: rgba(56,189,248,0.4);
  transform: translateX(6px);
}

/* =====================================================
   RIGHT SIDE (STORY)
===================================================== */

.about-story {
  padding: 45px;
  border-radius: 20px;
  text-align: left;

  box-shadow:
    0 0 30px rgba(56,189,248,0.1);
}

.about-story h2 {
  margin-bottom: 20px;
}

.about-story p {
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 15px;
}

.story-divider {
  width: 60px;
  height: 3px;
  background: #38bdf8;
  margin: 15px 0 25px 0;
  border-radius: 2px;
}


/* =====================================================
   IMPACT STATS
===================================================== */

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.stat-card {
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.stat-card h3 {
  font-size: 32px;
  color: #38bdf8;
}

.stat-card p {
  color: #94a3b8;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 25px rgba(56,189,248,0.3);
}


/* =====================================================
   JOURNEY SECTION
===================================================== */

.about-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.journey-card {
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.journey-card i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.journey-card h3 {
  margin-bottom: 12px;
}

.journey-card p {
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.6;
}

.journey-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 25px rgba(56,189,248,0.25),
    0 0 60px rgba(56,189,248,0.1);
}


/* =====================================================
   STRENGTHS SECTION
===================================================== */

.about-strengths {
  padding: 35px;
  border-radius: 20px;

  box-shadow:
    0 0 30px rgba(56,189,248,0.12),
    0 0 60px rgba(56,189,248,0.05);
}

.about-strengths h3 {
  margin-bottom: 25px;
}

.strength-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.strength-tags span {
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s ease;
}

.strength-tags span:hover {
  background: #38bdf8;
  color: #000;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .about-page {
    padding-top: 120px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
    gap: 30px;
  }

  .about-story {
    text-align: center;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-journey {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-card {
    padding: 20px;
  }

}

@media (max-width: 500px) {

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 22px;
  }

}