/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, Arial, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}

/* ================= COMMON LAYOUT ================= */
.about-page-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-page-section {
  padding: 90px 0;
}

.about-page-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #020617;
}

/* ================= PRIMARY BUTTON ================= */
.about-primary-button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.about-primary-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* ================= HERO ================= */
.about-hero-section {
  background:
    radial-gradient(circle at top left, #60a5fa, transparent 40%),
    radial-gradient(circle at bottom right, #22c55e, transparent 40%),
    linear-gradient(135deg, #020617, #020617);
  color: #ffffff;
  text-align: center;
  padding: 140px 0;
}

.about-hero-title {
  font-size: 52px;
  margin-bottom: 20px;
}

.about-hero-description {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

/* ================= GRID ================= */
.about-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= CARD ================= */
.about-glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.08);
  transition: 0.4s;
}

.about-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.15);
}

/* ================= CONTENT ================= */
.about-section-title {
  font-size: 26px;
  margin-bottom: 15px;
  color: #020617;
}

.about-highlight-text {
  color: #2563eb;
  font-weight: 600;
}

/* ================= VALUES ================= */
.about-value-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #020617;
}

/* ================= STATS ================= */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-stat-number {
  font-size: 34px;
  color: #2563eb;
  font-weight: 700;
}

.about-stat-label {
  font-size: 14px;
  color: #64748b;
}

/* ================= CTA ================= */
.about-call-to-action {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  text-align: center;
}

.about-call-to-action-text {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .about-two-column-grid,
  .about-three-column-grid,
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .about-two-column-grid,
  .about-three-column-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-page-heading {
    font-size: 28px;
  }
  .about-hero-title {
    font-size: 32px;
  }
}
