/* Founder Section */
.founder-section {
  padding: 60px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.founder-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.founder-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.founder-image:hover img {
  transform: scale(1.05);
}

.founder-content {
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
}

.founder-title {
  font-size: 2rem;
  color: #1a365d;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
}

.founder-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #25a550, #1a365d);
  border-radius: 2px;
}

.founder-name {
  font-size: 1.5rem;
  color: #1a365d;
  margin: 25px 0 5px;
  font-weight: 700;
}

.founder-position {
  font-size: 1.1rem;
  color: #4a5568;
  margin: 0 0 20px;
  font-weight: 500;
}

/* Responsive Design */
@media (min-width: 768px) {
  .founder-container {
    flex-direction: row;
    gap: 50px;
    text-align: left;
  }
  
  .founder-title::after {
    left: 0;
    transform: none;
  }
  
  .founder-content {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .founder-section {
    padding: 40px 0;
  }
  
  .founder-image {
    width: 250px;
    height: 250px;
  }
  
  .founder-title {
    font-size: 1.75rem;
  }
  
  .founder-name {
    font-size: 1.3rem;
  }
  
  .founder-position {
    font-size: 1rem;
  }
}
}

/* Responsive Design */
@media (max-width: 992px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }
  
  .founder-content {
    padding: 20px;
  }
  
  .founder-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .founder-signature {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .founder-section {
    padding: 50px 0;
  }
  
  .founder-title {
    font-size: 2rem;
  }
  
  .founder-name {
    font-size: 1.5rem;
  }
  
  .founder-position {
    font-size: 1.1rem;
  }
}
