.hero-section {
  padding: 140px 0 60px;
  background: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.role-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgb(172 138 255 / 8%);
  color: #432295;
  border-radius: 50px;
  border: 1px solid #e7deff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 2rem;
  border-left: 4px solid #432295;
  padding-left: 20px;
}

.bio-text {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.img-container {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.img-container img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
}

.img-container::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #432295;
  border-radius: 20px;
  z-index: -1;
}

.btn-vision {
  padding: 8px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  line-height: normal;
  font-size: 18px;
}
.legacy-section {
  background: #f6f6ff;
}

.legacy-title {
  font-weight: 700;
  line-height: 1.2;
}

.legacy-title span {
  color: #432295;
  font-weight: 600;
}

.legacy-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.text-primary {
  color: #432295 !important;
}

.legacy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.legacy-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legacy-stats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: #333;
}

.legacy-stats li:last-child {
  border-bottom: none;
}

.legacy-stats span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #432295;
}
.philosophy-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}
.philosophy-section ul {
  padding-left: 20px;
}
.philosophy-section ul li {
  list-style-type: disc;
}
.philosophy-section h2 .icon {
  color: #0d6efd;
  margin-left: 10px;
}
.philosophy-section h2 img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    text-align: center;
    padding: 110px 0 40px;
  }
  .img-container::after {
    top: -10px;
    right: -10px;
  }
  .hero-subtitle {
    border-left: none;
    padding-left: 0;
  }
  .img-container {
    margin-top: 50px;
  }
}
