/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    
    padding: 20px;
  }
  
  /* Blog Section */
  .blog-section {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #19173D;
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: start;
  }
  
  /* Blog Card */
  .blog-card {
    background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  max-width: 400px; /* Keep max width */
  width: 100%;
  }
  
  /* Blog Image */
  .blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: top center;
  }
  
  /* Blog Content */
  .blog-content {
    padding: 20px;
  }
  
  .blog-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
  }
  
  .blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #222;
  }
  
  .blog-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Read More Button */
  .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #19173D;
    color: white;
    border: 2px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s;
  }
  
  .read-more-btn:hover {
    background-color: white;
    color: #19173D;
    border-color: #19173D;
    
  }

  .video-section {
    padding: 40px 0px;
    max-width: 1400px; /* SAME as blog-section */
    margin: 0 auto; 
  }
  
  
  
  .video-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: start;
  }
  
  .video-card {
   background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  max-width: 400px; /* Keep max width */
  width: 100%;
  }
  
  .video-player {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: black;
  }
  
  .video-content {
    padding: 15px;
  }
  
  .video-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
  }
  
  .video-title {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
  }
  
  .video-description {
    font-size: 0.95rem;
    color: #666;
  }

  .featured-video {
    width: 100%;
    max-width: 95%;
    margin: 0 auto 40px auto; /* center + space below */
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (responsive) */
  }
  
  .featured-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  
  
  
  