  .maniBannerAll {
    background-color: #1E1B4B;
    /*background-color: #031119;*/
    padding: 30px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }

  .maniBannerAll h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .maniBannerAll p {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .maniBannerAll .btn-warning {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
  }

  .maniBannerAll .row.align-items-center {
    align-items: flex-start !important;
  }

  .maniBannerAll img {
    max-height: 350px;
    width: 100%;
    /*object-fit: cover;*/
    object-fit: contain;
  }

  @media (max-width: 767.98px) {
    .maniBannerAll {
      text-align: center;
      padding: 15px 0;
    }
    .maniBannerAll h1 {
      font-size: 2.2rem;
    }
    .maniBannerAll img {
      max-height: 300px;
    }
  }


/*end*/


/*mainBlog css*/

.mainBlog .featured-post {
  background-color: #031119;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.mainBlog .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.mainBlog .featured-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.mainBlog .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mainBlog .featured-post:hover .featured-img img {
  transform: scale(1.05);
}
.mainBlog .featured-content {
  padding: 22px;
}
.mainBlog .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mainBlog .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, #10a3d7, #0d82ad);
  color: #f2f8fe;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.mainBlog .category:hover {
  background: #10a3d7;
  color: #f2f8fe;
  transform: translateY(-1px);
}
.mainBlog .post-title a {
  color: #f2f8fe;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-decoration: none;
}
.mainBlog .post-title a:hover {
  color: #10a3d7;
}
.mainBlog .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainBlog .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mainBlog .author-name {
  font-size: 14px;
  font-weight: 600;
  color: #f2f8fe;
}
.mainBlog .read-time {
  font-size: 12px;
  color: rgba(228,237,245,0.6);
}
.mainBlog .read-more {
  color: #10a3d7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.mainBlog .read-more::after {
  content: "...";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}
.mainBlog .read-more:hover::after {
  margin-left: 12px;
}

/* ==== Recent small posts ==== */
.mainBlog .recent-post {
  background-color: #031119;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(228,237,245,0.08);
}
.mainBlog .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: rgba(16,163,215,0.3);
}
.mainBlog .recent-img {
  height: 150px;
  overflow: hidden;
}
.mainBlog .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mainBlog .recent-post:hover .recent-img img {
  transform: scale(1.05);
}
.mainBlog .recent-content {
  padding: 20px;
}
.mainBlog .recent-title a {
  color: #f2f8fe;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  text-decoration: none;
}
.mainBlog .recent-title a:hover {
  color: #10a3d7;
}
.mainBlog .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.mainBlog .recent-meta .author {
  color: #f2f8fe;
  font-weight: 500;
}
.mainBlog .recent-meta .date {
  color: rgba(228,237,245,0.6);
}
.mainBlog .post-date {
  font-size: 12px;
  color: rgba(228,237,245,0.6);
  font-weight: 500;
}

/* ==== Responsive ==== */
@media (max-width: 991px) {
  .mainBlog .featured-img { height: 250px; }
  .mainBlog .featured-content { padding: 24px; }
  .mainBlog .post-title a { font-size: 24px; }
  .mainBlog .post-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mainBlog .recent-post { display: flex; margin-bottom: 16px; }
  .mainBlog .recent-img { flex: 0 0 100px; height: 100px; }
  .mainBlog .recent-content { flex: 1; padding: 16px; }
  .mainBlog .recent-title a { font-size: 14px; }
}
@media (max-width: 576px) {
  .mainBlog .post-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mainBlog .recent-post { flex-direction: column; }
  .mainBlog .recent-img { flex: none; height: 120px; }
}

.mainBlog h2 {
  font-size: 2rem;
  color: #e0e9f2;
  margin-bottom: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: "Abel", sans-serif;
}
.mainBlog .highlight {
  position: relative;
  display: inline-block;
  color: #ec3237;
}

.mainBlog .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(16, 163, 215, 0.15);
}

/*end mainBlog css*/
