.programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 35px;
      justify-content: center;
    }

    .program-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      border: 1px solid var(--border-gray);
      display: flex;
      flex-direction: column;
    }

    .program-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary);
    }

    .program-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .program-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .program-card:hover .program-img img {
      transform: scale(1.1);
    }

    .program-tag {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--accent-gold);
      color: var(--primary);
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .program-body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .program-body h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .program-body p {
      color: var(--text-gray);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .program-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid var(--border-gray);
      margin-top: auto;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-gray);
    }

    .meta-item svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .program-cta {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .program-cta .btn {
      flex: 1;
      padding: 10px;
      font-size: 14px;
    }

    .filter-bar-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px auto 30px auto;
      width: 100%;
    }

    .filter-bar {
      display: inline-flex;
      background: #f8fafc;
      padding: 6px;
      border-radius: 50px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(255, 255, 255, 0.8);
      gap: 8px;
    }

    .filter-btn {
      padding: 12px 32px;
      border-radius: 40px;
      border: 1px solid transparent;
      background: transparent;
      color: #475569;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 160px;
    }

    .filter-btn:hover {
      color: var(--primary, #1b2668);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .filter-btn.active {
      background: linear-gradient(135deg, #1b2668 0%, #2e3b8b 100%);
      color: #ffffff;
      box-shadow: 0 6px 18px rgba(27, 38, 104, 0.25);
      transform: translateY(-1px);
    }

    .filter-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.25s ease;
    }

    .filter-btn:hover svg {
      transform: scale(1.15);
    }

    .program-category-header {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 10px auto;
      padding: 0 15px;
    }

    .program-category-header h2 {
      font-family: var(--font-heading, 'Poppins', sans-serif);
      font-size: 26px;
      font-weight: 700;
      color: var(--primary, #1b2668);
      margin-bottom: 12px;
    }

    .program-category-header p {
      color: var(--text-gray, #64748b);
      font-size: 15.5px;
      line-height: 1.7;
      margin: 0 auto;
    }



