
.articles-section {
  max-width: 1300px;
  margin: 70px auto;
  padding: 20px 20px;
  
}

.articles-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.articles-div{
  background: linear-gradient(to top,#45494eda,rgb(255, 255, 255));
  height: auto;
  width: 100%;
  overflow: hidden;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}


.article-card {
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.article-card h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}

.article-card p {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.article-card:hover {
  transform: translateY(-8px);
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}


.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.know-more{
  color: black;
  text-decoration: none;
  transition: all 0.5s ease
}
.know-more:hover{
  color: red;
}