
.hero {
    /* background-image: url(/images/freepik-export-20241126055721newr.png); */
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  /* .hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000048;
    z-index: 0;
    width: 100%;
    height: 100%;
  } */

  .hero h1,
  .hero p,
  .learn-more-btn {
      position: relative;
      z-index: 1;
      color:var(--color);
  }

.search-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.artical-card{
    background-color: var(--color);
}
.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 200px;
    /* object-fit: contain; */
}
.blog-title{
    color: var(--secondary-color) !important;
}