.blogs-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blogs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 70, 0.65); 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.blogs-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #fff;
}

.blogs-content p {
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.blogs-content p a {
  color: #ffb700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blogs-content p a:hover {
  color: #ff4f81;
}

.blogs-content span {
  color: #fff;
  opacity: 0.8;
}

/* ======== Responsive ======== */
@media (max-width: 992px) {
  .blogs-banner {
    height: 50vh;
  }
  .blogs-content h1 {
    font-size: 44px;
  }
  .blogs-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .blogs-banner {
    height: 45vh;
  }
  .blogs-content h1 {
    font-size: 36px;
  }
  .blogs-content p {
    font-size: 16px;
  }
}


/*  */

/* Hero Section */
.blog-hero {
    background-color: #2b2b3a;
    padding: 80px 0;
    text-align: center;
    color:  #ffffff;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Grid Layout */
.blog-grid-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Blog Cards */
.blog-card {
    background:  #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
    height: 220px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFC107;
    color: #2b2b3a;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
}

.blog-content {
    padding: 25px;
}

.meta-info {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.meta-info span {
    margin-right: 15px;
}

.blog-content h3 {
    color: #2E2E72;
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.blog-content p {
    color: #2b2b3a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: #E84C7F;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
}   