.banner-sec {
      width: 100%;
      height: 200px;
      position: relative;
      color: white;
      text-align: center;
      margin-bottom: 40px;
    }
    .banner-sec .overlay {
      width: 100%;
      height: 200px;
      background: linear-gradient(45deg, #000e1f, rgb(54, 80, 114));
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .banner-sec h1 {
      margin: 0 0 8px;
      color: #fff;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: bold;
    }

    .breadcrumbs {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1.5rem;
    }
    .breadcrumbs a { color: var(--color-dark); font-weight: 600; }
    .breadcrumbs .current { color: var(--color-primary); font-weight: 600; }

    .col .card .a-img { padding: 15px; }
    .blog-grid .card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      transition: transform .2s ease, box-shadow .2s ease;
      background: #fff;
    }
    .blog-grid .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
    }
    .blog-grid .card-img-top {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
    }
    .blog-grid .card-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--color-dark);
    }
    .blog-grid .card-title a:hover { color: var(--color-primary); }
    .card-text {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      height: 5.6em;
      line-height: 1.4em;
      color: #555;
      font-size: 0.95rem;
    }
    .readmore {
      display: flex;
      align-items: center;
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.95rem;
    }
    .readmore i { margin-left: 10px; }

.site-footer {
  padding: 3rem 0 0;
  margin-top: 2rem;
}
.footer-bottom {
  margin-top: 2rem;
  padding: 1.25rem 0;
}

@media (max-width: 768px) {
  .banner-sec h1 { font-size: 2rem; }
}