.timeline {
      position: relative;
      padding-left: 40px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 12px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(var(--primary), var(--accent-gold));
      border-radius: 2px;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 36px;
    }

    .timeline-dot {
      position: absolute;
      left: -34px;
      top: 4px;
      width: 20px;
      height: 20px;
      background: var(--primary);
      border-radius: 50%;
      border: 3px solid var(--white);
      box-shadow: 0 0 0 3px var(--primary);
    }

    .timeline-year {
      font-weight: 700;
      color: var(--accent-gold);
      font-size: 14px;
      margin-bottom: 4px;
    }

    .timeline-title {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .timeline-text {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 50px;
    }

    .vm-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-md);
      border-top: 4px solid var(--primary);
    }

    .vm-card.mission-card {
      border-top-color: var(--accent-gold);
    }

    .vm-icon {
      width: 56px;
      height: 56px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      margin-bottom: 18px;
    }

    .vm-icon svg {
      width: 28px;
      height: 28px;
    }

    .vm-card h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .vm-card p {
      color: var(--text-gray);
      line-height: 1.8;
      font-size: 15px;
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .leader-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      text-align: center;
      transition: var(--transition);
    }

    .leader-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .leader-avatar {
      width: 100%;
      height: 260px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .leader-avatar svg {
      width: 70px;
      height: 70px;
      color: rgba(255, 255, 255, 0.4);
    }

    .leader-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .leader-info {
      padding: 20px;
    }

    .leader-name {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .leader-title {
      font-size: 13px;
      color: var(--primary);
      font-weight: 500;
    }

    @media(max-width:768px) {

      .vision-mission,
      .leadership-grid {
        grid-template-columns: 1fr;
      }
    }


