  /* Leader Card (Dekan/Rahbar) Styles */
  .rector-horizontal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    margin: 0 auto 3rem auto;
  }
  .rector-horizontal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1b4d9a, #f2c94c);
  }
  @media (min-width: 768px) {
    .rector-horizontal-card {
      flex-direction: row;
      padding: 30px;
      gap: 40px;
    }
  }
  .rector-image-sec {
    position: relative;
    flex-shrink: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .rector-image-sec {
      width: 320px;
      padding: 0;
    }
  }
  .rector-img-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
  }
  .rector-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  .rector-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1b4d9a;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(27, 77, 154, 0.4);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .rector-info-sec {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .rector-info-sec {
      padding: 0;
    }
  }
  .r-degree {
    color: #2f5fb3;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .r-name {
    font-size: 2.2rem;
    color: #111;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .r-position {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .r-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  .r-details-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 1rem;
    color: #444;
  }
  .r-details-list li:first-child {
    border-top: 1px solid #eaeaea;
  }
  .r-details-list li i {
    color: #2f5fb3;
    width: 25px;
    font-size: 1.1rem;
  }
  .r-details-list li .r-label {
    font-weight: 600;
    width: 140px;
  }
  .r-details-list li .r-value {
    color: #555;
  }

  /* Staff Grid Styles */
  .prorector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  .prorector-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    padding: 40px 25px;
    text-align: center;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .prorector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  .prorector-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .prorector-name {
    color: #1b4d9a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .prorector-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }