.black-text a {
    color: black;
    text-decoration: none;
  }
  /* Blog Section Styles */
.blog_section {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  .blog_section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .blog_section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .blog_section .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 10px;
  }
  
  .blog_section .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  
  .blog_section .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .blog_section .heading_container h2 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .blog_section .heading_container p {
    max-width: 600px;
    margin: auto;
    color: #666;
    font-size: 0.95rem;
  }



  /*  */

  @media (min-width: 768px) and (max-width: 992px) {
  /* Adjust heading size for tablets */

  .card-body {
    padding: 6px !important;
  }

  .blog_section .card-title {
    font-size: 1rem;
  }

  .blog_section .card-text {
    font-size: 0.8rem;
  }

  .blog_section .card-date {
    font-size: 0.7rem;
  }

  .blog_section .heading_container h2 {
    font-size: 1.75rem;
  }

  .blog_section .heading_container p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  /* Blog hero section tweaks */
  .blog_section,
  .py-5 {
    padding: 40px 0 !important;
  }

  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  /* Adjust image visibility if needed */
  .blog_section .card img {
    height: auto;
  }
}