/* ================= ABOUT PAGE STYLES ================= */

/* ============================================
   PAGE HEADER
   ============================================ */
.about-page-header {
  background: linear-gradient(rgba(16, 31, 75, 0.82), rgba(16, 31, 75, 0.82)), url('../images/hero.png') center/cover no-repeat;
  padding: 100px 0;
  text-align: left;
}

.about-breadcrumb {
  color: #cfd8f5;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.about-breadcrumb a {
  color: #cfd8f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: #ffffff;
}

.about-breadcrumb i {
  margin: 0 8px;
  font-size: 12px;
  color: #cfd8f5;
}

.about-page-header h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
}

/* ============================================
   ABOUT CONTENT SECTION (ZIG-ZAG)
   ============================================ */
.about-content-section {
  padding: 80px 0;
}

/* About Rows */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 100px;
}

.about-row.reverse .about-text-wrapper {
  order: 1;
}

.about-row.reverse .about-image-wrapper {
  order: 2;
}

/* Image Wrappers */
.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-wrapper > img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Overlapping Small Image */
.about-overlap-img {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55% !important;
  border: 10px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 31, 75, 0.08);
  z-index: 2;
}

/* Text Content */
.about-text-wrapper h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c2b;
  line-height: 1.3;
}

.about-text-wrapper h2 span {
  color: #2952e3;
}

.about-text-wrapper p {
  color: #6b7280;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
}

/* About List (Bullet Points) */
.about-list {
  margin-top: 24px;
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #1c1c2b;
  font-size: 15px;
}

.about-list li i {
  color: #2952e3;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.about-values-section {
  background: #eaf3ff;
  padding: 80px 0;
}

.about-values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.about-values-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c2b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-values-header h2 span {
  color: #2952e3;
}

.about-values-header p {
  color: #6b7280;
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.6;
}

/* Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Value Card */
.about-value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(16, 31, 75, 0.08);
  border-color: #4fa3e3;
}

.about-value-icon {
  color: #2952e3;
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
}

.about-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101f4b;
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CONTAINER
   ============================================ */
.about-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.about-text-center {
  text-align: center;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-row.reverse .about-text-wrapper {
    order: 2;
  }

  .about-row.reverse .about-image-wrapper {
    order: 1;
  }

  .about-overlap-img {
    display: none;
  }

  .about-row.reverse {
    margin-top: 60px;
  }

  .about-page-header {
    padding: 70px 0;
  }

  .about-page-header h1 {
    font-size: 34px;
  }

  .about-content-section {
    padding: 60px 0;
  }

  .about-text-wrapper h2 {
    font-size: 30px;
  }

  .about-values-section {
    padding: 60px 0;
  }

  .about-values-header h2 {
    font-size: 28px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .about-page-header {
    padding: 50px 0;
  }

  .about-page-header h1 {
    font-size: 28px;
  }

  .about-breadcrumb {
    font-size: 12px;
  }

  .about-content-section {
    padding: 50px 0;
  }

  .about-text-wrapper h2 {
    font-size: 26px;
  }

  .about-text-wrapper p {
    font-size: 14px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-values-section {
    padding: 50px 0;
  }

  .about-values-header h2 {
    font-size: 24px;
  }

  .about-values-header p {
    font-size: 14px;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-value-card {
    padding: 30px 20px;
  }

  .about-value-card h3 {
    font-size: 18px;
  }

  .about-value-card p {
    font-size: 13px;
  }

  .about-container {
    padding: 0 15px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .about-page-header h1 {
    font-size: 24px;
  }

  .about-page-header {
    padding: 40px 0;
  }

  .about-text-wrapper h2 {
    font-size: 22px;
  }

  .about-row,
  .about-row.reverse {
    gap: 30px;
  }

  .about-row.reverse {
    margin-top: 40px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-values-header h2 {
    font-size: 22px;
  }

  .about-value-card {
    padding: 25px 18px;
  }

  .about-value-icon {
    font-size: 30px;
  }

  .about-container {
    padding: 0 12px;
  }

  .about-list li {
    font-size: 13px;
    gap: 10px;
  }

  .about-list li i {
    font-size: 16px;
  }
}