/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
  padding: 100px 24px;
  background: #ffffff;
}

.founder-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   GRID LAYOUT
========================= */

.founder-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.founder-left {
  display: flex;
  flex-direction: column;
}

.founder-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.founder-image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* =========================
   IMAGE OVERLAY
========================= */

.founder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;

  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.75),
    rgba(17, 24, 39, 0.15),
    transparent
  );
}

.founder-overlay h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.founder-overlay p {
  color: #8DC63F;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.founder-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #25d366;
  color: white;
  text-decoration: none;

  padding: 16px 20px;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s ease;
}

.founder-whatsapp-btn:hover {
  transform: scale(1.05);
}

.founder-whatsapp-btn i {
  font-size: 20px;
}

/* =========================
   RIGHT SIDE
========================= */

.founder-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =========================
   EXPERIENCE BADGE
========================= */

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  width: fit-content;

  padding: 10px 24px;
  background: #f5f8fc;
  border-radius: 999px;
}

.founder-years {
  color: #2563eb;
  font-size: 38px;
  font-weight: 700;
}

.founder-badge-text {
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

/* =========================
   HEADING
========================= */

.founder-right h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #0B2559;
}

.founder-highlight {
  color: #8DC63F;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
}

/* =========================
   DESCRIPTION
========================= */

.founder-description {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.8;
}

/* =========================
   QUOTE BOX
========================= */

.founder-quote-box {
  background: #f5f8fc;
  padding: 32px;
  border-radius: 24px;
  border-left: 8px solid #2563eb;
}

.founder-quote-box p {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
}

/* =========================
   BOOK BUTTON
========================= */

.founder-book-btn {
  display: inline-block;

  width: fit-content;

  background: #111827;
  color: #fff;
  text-decoration: none;

  padding: 18px 48px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 3px;

  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
}

.founder-book-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-right h2 {
    font-size: 42px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .founder-section {
    padding: 70px 20px;
  }

  .founder-overlay {
    padding: 24px;
  }

  .founder-overlay h3 {
    font-size: 24px;
  }

  .founder-right h2 {
    font-size: 34px;
  }

  .founder-book-btn {
    width: 100%;
    text-align: center;
  }

  .founder-badge {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .founder-right h2 {
    font-size: 28px;
  }

  .founder-years {
    font-size: 32px;
  }

  .founder-description,
  .founder-quote-box p {
    font-size: 15px;
  }

  .founder-book-btn {
    padding: 16px 20px;
    letter-spacing: 1px;
  }
}