.exam-notification {
  padding: 60px 20px;
  background: whitesmoke;
  color: #fff;
  text-align: center;
}

.notification-header .icon {
  font-size: 48px;
  animation: float 2.5s ease-in-out infinite;
}

.notification-header h2 {
  color: #f4c430;
  margin-top: 10px;
}

.notification-header p {
  color: #0c0101;
  margin-bottom: 40px;
}

/* Cards */
.notification-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}

.notify-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: 1px solid #333;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.notify-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(244, 196, 48, 0.35);
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #555;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.badge.new {
  background: #f4c430;
  color: #000;
  animation: pulse 1.5s infinite;
}

/* Text */
.notify-card h4 {
  margin-top: 20px;
  color: #f4c430;
}

.notify-card p {
  color: #ccc;
  font-size: 14px;
  margin-top: 8px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,196,48,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(244,196,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,196,48,0); }
}
