    .blog-section{
        padding: 30px;
    }
    .insight-section{
      padding:30px;
    }
    .card {
        background:#fff;
      border-radius: 15px;
      box-shadow: 0px 4px 8px rgba(114, 114, 114, 0.5);
    }

    .card-img-top {
      /* border-top-left-radius: 15px;
      border-top-right-radius: 15px; */
      height: 200px;
      object-fit: cover;
      padding: 15px;
      border-radius: 0px !important;
    }


    .date-badge {
      position: absolute;
      top: 55px;
      left: 20px;
      background-color: white;
      color: black;
      font-weight: bold;
      padding: 5px 10px;
      /* border-radius: 5px; */
      font-size: 14px;
      z-index: 10;
    }

    .btn-learn {
      background-color: #000;
      color: white;
      border: none;
      width:fit-content;
    }

    .btn-learn:hover {
      background-color: #999999;
      color: #000;
    }

    .card-body {
      min-height: 280px;
    }
  
    .card:hover{
        background-color: #fff;
    }

    .card-title{
        font-size: 22px;
        text-align: left;
    }
    .card-text{
        font-size: 18px;
    }

    /* blog pagination */
    .custom-pagination .page-link {
      border: none;
      border-radius: 50px;
      margin: 0 5px;
      padding: 10px 20px;
      font-weight: 500;
      color: #333;
      background-color: #f0f0f0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease-in-out;
  }
  
  .custom-pagination .page-link:hover {
      background-color: #333333;
      color: #fff;
      transform: translateY(-2px);
  }
  
  .custom-pagination .page-item.active .page-link {
      background-color: #333333;
      color: #fff;
      font-weight: bold;
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  @media (max-width: 576px) {
    .custom-pagination .page-link {
      padding: 6px 12px;
      font-size: 14px;
    }
  }