.founder-section {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 100vh;
  margin-top: 50px;
}

/* LEFT PANEL */
.founder-left {
  background: #173054;
  color: white;
  padding: 50px 30px;
  text-align: center;
}

.founder-left img {
  width: 180px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #00a896;
}

.designation {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.stats div strong {
  font-size: 22px;
  display: block;
}

.stats div span {
  font-size: 12px;
  opacity: 0.8;
}

.founder-contact a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.founder-contact a:hover {
  color: #00a896;
  transform: translateY(-3px);
}

/* RIGHT PANEL */
.founder-right {
  padding: 60px 70px;
}

.founder-right h3 {
  color: #173054;
  margin-bottom: 10px;
}

.founder-right p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Expertise Cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.expertise-grid span {
  background: #f5f7fa;
  padding: 12px 15px;
  border-left: 4px solid #00a896;
  transition: 0.3s;
}

.expertise-grid span:hover {
  background: #e6f7f4;
  transform: translateX(5px);
}

/* Sector List */
.sector-list li {
  margin-bottom: 10px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-right {
    padding: 40px 25px;
  }
}