       .news-card {
      transition: all 0.3s ease-in-out;
      border-radius: 12px;
      overflow: hidden;
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(247, 79, 34, 0.2);
    }

    .news-card img {
      transition: transform 0.3s ease;
    }

    .news-card:hover img {
      transform: scale(1.05);
    }
    .cert-badge {
      background: #fcb7a9;
      color: #000;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .cert-badge:hover {
      background: #f74f22;
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(247, 79, 34, 0.3);
    }

    .cert-badge:active {
      transform: scale(0.95);
    }

    