.management-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f6faf7 0%, #ffffff 48%, #f7fbf8 100%);
}

.management-section .container {
  display: grid;
  gap: 34px;
}

.mgmt-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3ecdf;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(30, 69, 42, 0.1);
}

.mgmt-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.mgmt-row-reverse .mgmt-img {
  order: 2;
}

.mgmt-img {
  min-height: 100%;
  background: #edf5ec;
  position: relative;
}

.mgmt-img::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.mgmt-img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mgmt-content {
  position: relative;
  padding: 42px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mgmt-content::before {
  content: "";
  width: 58px;
  height: 4px;
  background: #2f7d32;
  border-radius: 999px;
  margin-bottom: 18px;
}

.mgmt-eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #2f7d32;
  background: #edf7ee;
  border: 1px solid #d9ecd9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mgmt-name {
  margin: 0 0 6px;
  color: #172318;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.mgmt-designation {
  margin: 0 0 20px;
  color: #6a756b;
  font-size: 15px;
  font-weight: 700;
}

.mgmt-text {
  margin: 0;
  color: #3f4b41;
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.mgmt-signature {
  margin: 24px 0 0;
  color: #273328;
  font-size: 15px;
  line-height: 1.75;
}

.mgmt-signature strong {
  color: #2f7d32;
  font-weight: 800;
}

@media (max-width: 991px) {
  .management-section {
    padding: 54px 0;
  }

  .mgmt-row,
  .mgmt-row-reverse {
    grid-template-columns: 1fr;
  }

  .mgmt-row-reverse .mgmt-img {
    order: 0;
  }

  .mgmt-img img {
    min-height: auto;
    aspect-ratio: 16 / 11;
  }

  .mgmt-content {
    padding: 30px 26px;
  }

  .mgmt-name {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .management-section .container {
    gap: 24px;
  }

  .mgmt-content {
    padding: 26px 20px;
  }

  .mgmt-img img {
    aspect-ratio: 4 / 3;
  }

  .mgmt-name {
    font-size: 21px;
  }

  .mgmt-text {
    text-align: left;
  }
}

/* Profile Card Grid System */
.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.profile-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47, 125, 50, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(47, 125, 50, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #edf7ee 0%, #ccead0 100%);
  z-index: -1;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(47, 125, 50, 0.15);
}

.profile-card-img-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 40px auto 0;
  border-radius: 50%;
  z-index: 2;
}

.profile-card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f7d32, #66bb6a);
  z-index: -1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(47, 125, 50, 0.2);
}

.profile-card:hover .profile-card-img-wrapper::after {
  transform: rotate(180deg) scale(1.05);
  box-shadow: 0 12px 35px rgba(47, 125, 50, 0.3);
}

.profile-card-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background: #ffffff;
  z-index: 2;
}

.profile-card-body {
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.profile-card-header {
  margin-bottom: 24px;
}

.profile-card-name {
  font-size: 24px;
  font-weight: 800;
  color: #172318;
  margin: 0 0 8px;
  line-height: 1.2;
}

.profile-card-designation {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  background: linear-gradient(90deg, #2f7d32, #4caf50);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(47, 125, 50, 0.2);
}

.profile-card-info {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 15px;
  color: #4a554b;
  background: #fafcf9;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #eef2eb;
  text-align: left;
}

.profile-card-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  line-height: 1.5;
}

.profile-card-info li:last-child {
  margin-bottom: 0;
}

.profile-card-info li i {
  color: #2f7d32;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 1px;
  width: 24px;
  text-align: center;
}

.profile-card-info strong {
  color: #273328;
  margin-right: 8px;
  font-weight: 700;
}

.profile-card-message {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a665b;
  margin: 0;
  border-top: 1px dashed #d9ecd9;
  padding-top: 20px;
  flex-grow: 1;
  text-align: justify;
}
 
 