.blogs-section {
    background-color: #4C0013; /* Black background */
    padding: 50px 20px;
  }
  
  .section-heading {
    text-align: center;
    font-size: 2rem;
    color: white; /* Yellow text */
    margin-bottom: 30px;
    position: relative;
  }
  
  .section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: white; /* Yellow underline */
    margin: 10px auto;
  }
  
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .blog-container {
    background-color: white; /* Dark gray for blog cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
  }
  
  .blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: black; /* Yellow text */
    margin: 15px;
  }
  
  .blog-description {
    font-size: 0.95rem;
    color: #fff; /* White text */
    margin: 0 15px 15px;
  }
  
  .read-more-btn {
    display: inline-block;
    background-color: #ffc107; /* Yellow button */
    color: #000; /* Black text */
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #fff; /* White on hover */
    color: #000; /* Black text on hover */
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .blog-image {
      height: 150px; /* Smaller image height for mobile */
    }
  
    .blog-tagline {
      font-size: 1rem;
    }
  
    .blog-description {
      font-size: 0.9rem;
    }
  
    .read-more-btn {
      font-size: 0.85rem;
      padding: 8px 15px;
    }
  }
  