
h2 {
    margin-top: 70px;
    color: var(--neon);
    animation: fadeInDown 1s ease-out;
}
  h2::after{
  content:"";
  width:100px;
  height:5px;
  background:linear-gradient(90deg, transparent, #00ffd5, transparent);
  display:block;
  margin:15px auto;
  border-radius:20px;
  animation:expandWidth 1s ease-out 0.3s both;
}
  .news-card {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .news-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00ffd5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 213, 0.3);
  }

  .news-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 20px;
  }

  .news-card:hover img {
    transform: scale(1.1);
  }

  .news-date {
    color: #00ffd5;
    font-size: 0.9rem;
    display: inline-block;
    animation: fadeIn 1s ease-out 0.3s both;
  }

  .news-btn {
    background: linear-gradient(135deg, #00ffd5 0%, #00d4ff 100%);
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 20px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 255, 213, 0.3);
    position: relative;
    overflow: hidden;
  }

  .news-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    border-radius: 50%;
  }

  .news-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffd5 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 213, 0.5);
  }

  .news-btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .news-card img {
    height: 200px;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

