

    .archive {
    text-align: center;
    margin-bottom: 15px;
    margin-top:20px;
  }

  .archive label {
    font-weight: 600;
    color: #0D47A1;
    margin-right: 8px;
  }

  .archive select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: 500;
    font-size: 14px;
  }

  /* Notification Cards */
  .notification-container {
    max-width: 1150px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .notification-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .notification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .notification-title {
    font-size: 22px;
    font-weight: 700;
    color: #0D47A1;
    margin-bottom: 12px;
  }

  .notification-body {
    font-size: 16px;
    color: #424242;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .notification-footer {
    font-size: 14px;
    color: #FF8F00;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .notification-link {
    text-decoration: none;
    color: #ffffff;
    background-color: #2E7D32;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .notification-link:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }

  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    max-width: 80%;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
  }

  .modal-content img, .modal-content iframe {
    max-width: 100%;
    height: auto;
  }

  .close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .pagination button {
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #0D47A1;
    border: 1px solid #ccc;
  }

  .pagination button.active {
    background-color: #2E7D32;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .pagination button:hover {
    background-color: #4CAF50;
    color: #ffffff;
  }
  
  @keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .industry-card {
        min-width: 150px;
        padding: 15px;
    }
}
