/* ------------ GOOGLE FONTS ------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ----------- SLIDER ------------ */
.swiper {
  width: 100%;
}

.swiper-wrapper {
  width: 100%;
  height: 35em;
  display: flex;
  align-items: center;
}

.card {
  width: 90%;
  max-width: 20em;
  height: 90%;
  background-color: #fff;
  border-radius: 2em;
  box-shadow: 0 0 2em rgba(0, 0, 0, .2);
  padding: 2em 1em;

  display: flex;
  align-items: center;
  flex-direction: column;

  margin: 0 2%;
  box-sizing: border-box;
}

.swiper-slide:not(.swiper-slide-active) {
  filter: blur(1px);
}

.card__image {
  width: 10em;
  height: 10em;
  border-radius: 50%;
  border: 5px solid #9176FF;
  padding: 3px;
  margin-bottom: 2em;
}

.card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card__content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  top: .2em;
}

.card__name {
  color: #9176FF;
}

.card__text {
  text-align: center;
  font-size: 1.1rem;
  margin: 1em 0;
}

.card__btn {
  background-color: #9176FF;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-top: .5em;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .swiper-wrapper {
    height: auto;
  }

  .card {
    width: 90%;
    margin: 0 auto 1em auto;
  }
}

/* ----------- FOUNDER SECTION ------------ */
.founder-section {
  position: relative;
  padding-bottom: 40px;
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(145, 118, 255, 0.18), transparent 60%),
    radial-gradient(700px 360px at 85% 70%, rgba(0, 170, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 255, 1) 100%);
}

.founder-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #2b2b2b;
  background: rgba(145, 118, 255, 0.12);
  border: 1px solid rgba(145, 118, 255, 0.22);
}

.founder-content {
  padding-right: 10px;
}

.founder-name {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.founder-role {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}

.founder-bio {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.75;
}

.founder-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.founder-pill i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #9176FF 0%, #5b8cff 50%, #00aaff 100%);
  box-shadow: 0 10px 22px rgba(145, 118, 255, 0.25);
}

.founder-pill span {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.founder-link {
  font-weight: 700;
  color: #9176FF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.founder-link:hover {
  color: #6c57ff;
}

.founder-card {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.founder-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(145, 118, 255, 0.35), rgba(0, 170, 255, 0.25));
  filter: blur(28px);
  opacity: 0.55;
  z-index: 0;
}

.founder-card > * {
  position: relative;
  z-index: 1;
}

.founder-card-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.founder-avatar {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9176FF 0%, #00aaff 100%);
  box-shadow: 0 18px 35px rgba(145, 118, 255, 0.30);
  overflow: hidden;
}

.founder-avatar span {
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
}

.founder-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.founder-card-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.founder-card-subtitle {
  color: rgba(0, 0, 0, 0.65);
}

.founder-quote {
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(145, 118, 255, 0.09);
  border: 1px solid rgba(145, 118, 255, 0.15);
  margin-bottom: 18px;
}

.founder-quote i {
  color: #9176FF;
  font-size: 1.2rem;
}

.founder-quote p {
  margin: 10px 0 0 0;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.65;
}

.founder-stats {
  margin-top: 6px;
}

.founder-stat {
  border-radius: 16px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.founder-stat .value {
  font-weight: 900;
  font-size: 1.05rem;
}

.founder-stat .label {
  color: rgba(0, 0, 0, 0.60);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .founder-content {
    padding-right: 0;
  }
  .founder-name {
    font-size: 1.85rem;
  }
}
