.notice-section {
  margin: 50px auto;
  padding: 20px;
  background: rgba(34, 34, 34, 0.4);
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-left: 80px;
  margin-right: 80px;
  animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
  0% {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 2px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1);
  }
  100% {
    border-color: rgba(0, 255, 255, 1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
  }
}

.notice-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  border-left: 4px solid #007bff;
  padding-left: 10px;
  color: #ffffff;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.notice-heading {
  font-weight: 700;
  font-size: 1.1rem;
  color: #007bff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.notice-heading:hover {
  color: #90bcff;
  text-decoration: underline;
}

.notice-date {
  font-size: 0.9rem;
  color: #e0e347;
  margin: 2px 0 5px;
}

.notice-desc {
  font-size: 0.9rem;
  color: #d7d7d7;
  line-height: 1.5;
}

.notice-button {
  text-align: center;
  margin-top: 25px;
}

.btn-see-all {
  display: inline-block;
  background: #007bff;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-see-all:hover {
  background: #0056b3;
}

/* 🌐 Responsive Margins */

@media (max-width: 1200px) {
  .notice-section {
    margin-left: 70px;
    margin-right: 70px;
  }
}

@media (max-width: 992px) {
  .notice-section {
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media (max-width: 768px) {
  .notice-section {
    margin-left: 30px;
    margin-right: 30px;
    padding: 20px 25px;
  }
}

@media (max-width: 576px) {
  .notice-section {
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px 20px;
  }
}

@media (max-width: 425px) {
  .notice-section {
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px 20px;
  }
}

