/* General Reset for Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Background Styling */
  .blogs-section {
    background-color: #000;
    color: #ddd;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
  }
  
  /* Section Title */
  .section-title {
    text-align: center;
    font-size: 32px;
    color: goldenrod;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
  
  /* Blog Container - Grid */
  .blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Blog Card */
  .blog-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.7);
  }
  
  /* Blog Image Styling */
  .blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid goldenrod;
  }
  
  /* Blog Content */
  .blog-content {
    padding: 15px 20px;
    flex-grow: 1;
    color: #ddd;
  }
  
  .blog-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: goldenrod;
    transition: color 0.2s ease;
  }
  
  .blog-title:hover {
    color: #ffd700;
  }
  
  .blog-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
    color: #aaa;
    line-height: 1.6;
  }
  
  /* Read More Button */
  .read-more {
    text-decoration: none;
    color: white;
    background-color: goldenrod;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block;
  }
  
  .read-more:hover {
    background-color: #ffd700;
  }
  /* Banner Section */
.blog-banner {
    background: linear-gradient(to right, #000, #333); /* Smooth gradient effect */
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid goldenrod;
    /* margin-bottom: 30px; */
    /* border-radius: 8px; */
  }
  
  .banner-title {
    font-size: 36px;
    color: goldenrod;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .banner-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .banner-title {
      font-size: 22px;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .blogs-container {
      grid-template-columns: 1fr;
    }
  }
  