  .program-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 100%;
  }

  @media (max-width: 992px) {
    .program-card {
      min-width: 220px;
      margin-bottom: 1.2rem;
    }
  }
  @media (max-width: 768px) {
    .program-card {
      min-width: 180px;
      margin-bottom: 1rem;
    }
  }
  @media (max-width: 576px) {
    .program-card {
      min-width: 140px;
      margin-bottom: 0.7rem;
      border-radius: 12px;
    }
  }

  .program-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f2f5, #e1e8ed);
  }
  @media (max-width: 768px) {
    .program-image-container {
      height: 160px;
    }
  }
  @media (max-width: 576px) {
    .program-image-container {
      height: 110px;
    }
  }

  .program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .program-card:hover .program-image {
    transform: scale(1.05);
  }

  .country-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 113, 187, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
  }
  @media (max-width: 576px) {
    .country-badge {
      font-size: 0.7rem;
      padding: 0.4rem 0.8rem;
      top: 0.5rem;
      left: 0.5rem;
    }
  }

  .program-content {
    padding: 1.2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .program-content {
      padding: 0.7rem;
    }
  }

  .program-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
  }
  .program-title:hover,
  .program-title:focus {
    color: #0071bb;
    text-decoration: none;
  }
  @media (max-width: 576px) {
    .program-title {
      font-size: 0.95rem;
      min-height: 1.6rem;
    }
  }

  .program-rate {
    color: #0071bb;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 16px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 113, 187, 0.3);
    letter-spacing: 0.5px;
  }
  @media (max-width: 576px) {
    .program-rate {
      font-size: 0.85rem;
      padding: 0.5rem 0.9rem;
    }
  }

  .donation-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: auto;
    flex-wrap: wrap;
  }
  .donation-buttons.single-only {
    justify-content: center;
  }
  @media (max-width: 768px) {
    .donation-buttons {
      flex-direction: row;
      gap: 0.5rem;
    }
  }



  .donation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }
  .donation-btn:hover::before,
  .donation-btn:focus::before {
    left: 100%;
  }
  .donation-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: auto;
    flex-wrap: nowrap; /* Prevent wrapping */
}
.donation-btn {
    flex: 1 1 0;
    /* min-width: 130px; */
    border-radius: 10px;
    font-size: 1.08rem;
    padding: 0.7rem 1.3rem;
}
.donation-btn.full-width {
    flex: none;
    width: 80%;
    max-width: 200px;
}
@media (max-width: 576px) {
    .donation-buttons {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    .donation-btn {
        min-width: 90px;
    }
    .donation-btn.full-width {
        width: 100%;
        max-width: none;
    }
}


  .btn-single {
    background: linear-gradient(135deg, #0071bb, #005a94);
    color: white;
    border: 2px solid transparent;
  }
  .btn-single:hover,
  .btn-single:focus {
    background: linear-gradient(135deg, #005a94, #004374);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 25px rgba(0, 113, 187, 0.4);
    color: white;
    text-decoration: none;
  }
  .btn-single:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 113, 187, 0.2);
  }

  .btn-monthly {
    background: white;
    color: #0071bb;
    border: 2px solid #0071bb;
  }
  .btn-monthly:hover,
  .btn-monthly:focus {
    background: #0071bb;
    color: white;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 25px rgba(0, 113, 187, 0.3);
    text-decoration: none;
  }
  .btn-monthly:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 113, 187, 0.2);
  }

  /* Swiper navigation buttons */
  .custom-swiper-btn {
    background: #fff !important;
    color: #0071bb !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0,113,187,0.10) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;
    cursor: pointer !important;
    border: 2px solid #0071bb !important;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s !important;
    font-size: 1.6rem !important;
    outline: none !important;
    user-select: none !important;
    touch-action: manipulation !important;
  }
  .custom-swiper-btn:focus,
  .custom-swiper-btn:hover {
    background: #0071bb !important;
    color: white !important;
    box-shadow: 0 8px 32px rgba(0,113,187,0.18) !important;
    transform: scale(1.08) !important;
    border-color: #005a94 !important;
  }
  .custom-swiper-btn:active {
    transform: scale(0.96) !important;
    box-shadow: 0 2px 8px rgba(0,113,187,0.10) !important;
  }
  .swiper-button-next.custom-swiper-btn::after,
  .swiper-button-prev.custom-swiper-btn::after {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
    color: inherit !important;
  }
  .swiper-button-next.custom-swiper-btn::after {
    content: "\f105" !important;
  }
  .swiper-button-prev.custom-swiper-btn::after {
    content: "\f104" !important;
  }
  .swiper-button-next.custom-swiper-btn {
    right: 10px !important;
  }
  .swiper-button-prev.custom-swiper-btn {
    left: 10px !important;
  }
  @media (max-width: 768px) {
    .custom-swiper-btn {
      width: 36px !important;
      height: 36px !important;
      font-size: 1.2rem !important;
      top: 55% !important;
    }
    .swiper-button-next.custom-swiper-btn {
      right: 2px !important;
    }
    .swiper-button-prev.custom-swiper-btn {
      left: 2px !important;
    }
  }
  @media (max-width: 576px) {
    .custom-swiper-btn {
      width: 32px !important;
      height: 32px !important;
      font-size: 1rem !important;
      top: 60% !important;
    }
  }

  .custom-swiper-pagination {
    --swiper-pagination-color: #0071bb !important;
    --swiper-pagination-bullet-size: 12px !important;
    --swiper-pagination-bullet-inactive-color: #e1e8ed !important;
    --swiper-pagination-bullet-inactive-opacity: 1 !important;
    --swiper-pagination-bullet-horizontal-gap: 6px !important;
    margin-bottom: 10px !important;
  }
  .custom-swiper-pagination .swiper-pagination-bullet {
    background: #0071bb !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s, transform 0.3s !important;
  }
  .custom-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    background: #0071bb !important;
  }
