
/* =========================
   ABOUT PAGE (ISOLATED)
========================= */

.about-page {
  background: #f8fafc;
}


/* ===== HERO ===== */
.about-hero-new {
  height: 40vh;
  min-height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: radial-gradient(
      circle at 20% 30%,
      rgba(59,130,246,0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(59,130,246,0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #020617, #0f172a);

  position: relative;
  overflow: hidden;
}
.about-hero-new::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(59,130,246,0.2) 1px, transparent 1px);
  background-size: 22px 22px;

  opacity: 0.25;
}
.about-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.85) contrast(1.1);
}
.about-hero-content h1,
.about-hero-content p {
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.about-hero-content {
  position: relative;
  z-index: 3;
  color: white;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;

  background: linear-gradient(90deg, #60a5fa, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 16px;
  color: #cbd5f5;
  opacity: 0.9;
}
.about-quote {
  margin-top: 10px;
  font-style: italic;
  color: #475569;
}

/* ===== FOUNDER SECTION ===== */
.about-founder-section {
  padding: 50px 20px;
}

.about-founder-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-founder-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-founder-text h2 {
  font-size: 32px;
  margin-bottom: 5px;
  color: #0f172a;
}

.about-founder-role {
  color: #2563eb;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.about-founder-text p {
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #2563eb;
  color: white;

  padding: 12px 22px;
  border-radius: 999px;

  text-decoration: none;
  font-size: 14px;

  transition: 0.3s ease;
}

.about-linkedin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* ===== CARDS ===== */
.about-info-section {
  padding: 40px 20px 60px;
}

.about-info-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-info-card {
  background: white;
  padding: 25px 20px;

  border-radius: 18px;
  border: 1px solid #e2e8f0;

  text-align: left;

  transition: all 0.3s ease;
}

.about-info-icon {
  width: 50px;
  height: 50px;

  background: #e2e8f0;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;
}

.about-info-icon i {
  color: #2563eb;
}

.about-info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.about-info-card p {
  color: #64748b;
  font-size: 14px;
}

.about-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.about-founder-image {
  position: relative;
}
.founder-overlay {
  position: absolute;
  bottom: 25px;

  left: 20px;

  text-align:left; /* center text */

  color: white;
  z-index: 2;
}
.founder-overlay h2 {
  font-size: 22px;
  margin-bottom: 6px; /* spacing between name & role */
  font-weight: 600;
}

.founder-overlay span {
  font-size: 14px;
  color: #93c5fd;
}
.founder-overlay h2,
.founder-overlay span {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.about-founder-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1),
    transparent
  );

  border-radius: 20px;
}
/* ===== NAME VISIBILITY CONTROL ===== */

/* Desktop default */
.mobile-only {
  display: none;
}

.desktop-name {
  display: block;
}

/* TEXT ALIGN FIX */
.about-founder-text {
  text-align: left;
  max-width: 520px;
}
/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 992px) {

  .about-founder-container {
    grid-template-columns: 1fr;
  }

  .about-founder-image {
    text-align: center;
  }

  .about-founder-image img {
    max-width: 500px;
    margin: auto;
  }

  .about-founder-text {
    max-width: 600px;
    margin: auto;
    text-align: left;
  }

  .about-info-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================= 768px ================= */

@media (max-width: 768px) {

  .about-hero-new {
    height: 35vh;
    min-height: 260px;
    padding: 0 15px;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }

  .about-hero-content p {
    font-size: 14px;
  }

  /* FOUNDER */
  .about-founder-section {
    padding: 40px 15px;
  }

  .about-founder-container {
    gap: 20px;
  }

  /* NAME SWITCH */
  .mobile-only {
    display: block;
  }

  .desktop-name {
    display: none;
  }

  .about-founder-text h2 {
    font-size: 24px;
  }

  .about-founder-role {
    font-size: 14px;
  }

  .about-founder-text p {
    font-size: 14px;
  }

  /* BUTTON */
  .about-linkedin-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* CARDS */
  .about-info-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-info-card {
    padding: 20px 15px;
  }

  .about-info-card h3 {
    font-size: 18px;
  }

  .about-info-card p {
    font-size: 13px;
  }

}

/* ================= 480px ================= */

@media (max-width: 480px) {

  .about-hero-new {
    height: 30vh;
    min-height: 220px;
  }

  .about-hero-content h1 {
    font-size: 24px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .about-founder-text h2 {
    font-size: 20px;
  }

  .about-founder-role {
    font-size: 13px;
  }

  .about-founder-text p {
    font-size: 13px;
  }

  .about-linkedin-btn {
    width: 100%;
    justify-content: center;
  }

  .about-info-card {
    padding: 18px 12px;
  }

  .about-info-icon {
    width: 40px;
    height: 40px;
  }

  .mobile-only {
    display: block;
  }

  .desktop-name {
    display: none;
  }

}