.purple-background {
  position: absolute;
  top: 0;
  left: -30%;
  width: 35%;
  height: 100%;
  background: linear-gradient(126.14deg,
      rgba(255, 255, 255, 0.9) 2.24%,
      rgba(228, 185, 248, 0.9) 97.78%);
  border-radius: 32px;
  box-shadow: 8px 0 24px -4px rgba(44, 0, 89, 0.18);
  z-index: -1;
}

.founder-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  overflow: hidden;
}

.card-container {
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.founder-image {
  width: 435px;
  height: 470px;
  border-radius: 12px;
  object-fit: cover;
}
 

.founder-content {
  text-align: justify;
  font-size: 20px;
  color: #000;
  line-height: 40px;
  max-width: 60%;
  animation: slideIn 1s ease-out;
  position: relative;
  padding: 0 12px;
  top: -50px;
}

h2.name {
  text-align: center;
  line-height: 1.5;
  font-size: 26px;
  font-weight: bold;
  margin-top: 0;
}

p.credentials {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}

.content-wrapper {
  position: relative; 
  z-index: 2;
  padding: 12px;
}

.content-wrapper .title {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 27px;
  letter-spacing: 2px;
}

.about-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}

.about-title {
  font-size: 26px;
  font-weight: 700;
}

.read-more {
  color: #4a1e6d;
  text-decoration: none;
  width: fit-content;
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: "≫";
}

@media (max-width: 992px) {
  .founder-image {
    width: 300px;
    height: 350px;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    height: auto;
  }

  .founder-content {
    margin-top: 30px;
    padding: 0 12px;
    max-width: 100%;
  }

  .about-heading {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .purple-background {
    display: none;
  }

  .card-container {
    display: flex;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .founder-container {
    margin-top: 80px;
    padding: 0 10px;
  }



  .founder-content {
    flex: 1;
    padding: 0;
    margin-top: 30px;
    font-size: 19px;
    line-height: 27px;
    max-width: 100%;
  }

  .founder-image {
    margin-bottom: 10px;
    width: 100%;
    height: auto; 
    align-items: center;
  }

  .founder-container {
    flex-direction: column;
  }

  .read-more {
    color: #4a1e6d;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    line-height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .founder-content p {
    line-height: 27px;
  }

  .content-wrapper {
    padding: 0;
  }

  .founder-image {
    padding: 0; 
  }
}