/* DeskTop Design start*/
.founder-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
}

.founder-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 57px;
}


.founder-image {
  flex: 1;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.founder-content {
  flex: 1;
}

.founder-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.founder-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}


.founder-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #f17c01;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.founder-btn:hover {
  background: #000;
}
/* DeskTop Design end*/

/* Mobile Design start*/
@media (max-width: 768px) {

  .founder-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .founder-image {
    height: 250px;
  }

  .founder-content h2 {
    font-size: 22px;
  }

  .founder-content p {
    font-size: 14px;
  }

  .founder-btn {
    width: 100%;
    text-align: center;
  }
}
/* Mobile Design end */