.blog-page-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.blog-layout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 35px;
  align-items: flex-start;
}

.blog-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-new {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
  transition: all 0.25s ease;
}

.blog-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
}

/* First row: image + heading/description */
.blog-top-row-new {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
}

.blog-img-box {
  width: 100%;
  height: 100%;
 
  background: #eef2f7;
  overflow: hidden;
}

.blog-img-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-img-box img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 
}


.blog-content-box {
  padding: 24px 26px;
}

/* Second row: Read More + Share */
.blog-actions-new {
  width: 100%;
  padding: 16px 26px 22px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.share-row-new {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-top-row-new {
    grid-template-columns: 1fr;
  }

  .blog-img-box {
    height: 260px;
    min-height: unset;
  }
}

@media (max-width: 575px) {
  .blog-content-box {
    padding: 20px;
  }

  .blog-actions-new {
    padding: 16px 20px 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .share-row-new {
    width: 100%;
  }
}

.blog-card-new:hover .blog-img-box img {
  transform: scale(1.04);
}

.blog-content-box {
  padding: 24px 26px;
}

.blog-title-new {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 800;
}

.blog-title-new a {
  color: #17223b;
  text-decoration: none;
}

.blog-title-new a:hover {
  color: #2644d7;
}

.blog-meta-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #667085;
}

.blog-meta-new i {
  color: #2644d7;
  margin-right: 5px;
}

.blog-excerpt-new {
  font-size: 15.5px;
  line-height: 1.85;
  color: #475467;
  margin-bottom: 20px;
}

.blog-actions-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.read-more-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2644d7;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.read-more-new:hover {
  background: #172c9f;
  color: #fff !important;
  transform: translateY(-2px);
}

.share-row-new {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label-new {
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

.share-icon-new {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
  color: #344054;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.share-icon-new:hover {
  transform: translateY(-2px);
  color: #fff;
}

.share-icon-new.fb:hover {
  background: #1877f2;
}

.share-icon-new.in:hover {
  background: #0a66c2;
}

.share-icon-new.wa:hover {
  background: #25d366;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-widget {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.07);
}

.blog-widget-title {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 800;
  color: #17223b;
  position: relative;
  padding-bottom: 10px;
}

.blog-widget-title:after {
  content: "";
  width: 42px;
  height: 3px;
  background: #2644d7;
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.blog-search-form {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.blog-search-form input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 11px 13px;
  outline: none;
  font-size: 14px;
}

.blog-search-form input:focus {
  border-color: #2644d7;
}

.blog-search-form button {
  border: none;
  background: #2644d7;
  color: #fff;
  border-radius: 12px;
  width: 46px;
  min-width: 46px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-search-form button:hover {
  background: #172c9f;
}

.recent-blog-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-blog-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none !important;
}

.recent-blog-img {
  width: 74px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2f7;
}

.recent-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-blog-info h4 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #17223b;
}

.recent-blog-info span {
  font-size: 12.5px;
  color: #667085;
}

.recent-blog-item:hover h4 {
  color: #2644d7;
}

.blog-help-box {
  background: linear-gradient(135deg, #2644d7, #172c9f);
  color: #fff;
}

.blog-help-box .blog-widget-title {
  color: #fff;
}

.blog-help-box .blog-widget-title:after {
  background: #fff;
}

.blog-help-box p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-help-box a {
  display: inline-flex;
  background: #fff;
  color: #2644d7 !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
}

.blog-empty-message {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  color: #475467;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}

.blog-pagination-wrap {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.blog-pagination-wrap ul,
.blog-pagination-wrap .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-wrap li a,
.blog-pagination-wrap li span,
.blog-pagination-wrap a,
.blog-pagination-wrap strong {
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #344054;
  border: 1px solid #d0d5dd;
  text-decoration: none !important;
  font-weight: 700;
  transition: all 0.2s ease;
}

.blog-pagination-wrap li a:hover {
  background: #f2f4f7;
  color: #2644d7;
}

.blog-pagination-wrap .active a,
.blog-pagination-wrap li.active span,
.blog-pagination-wrap strong {
  background: #2644d7;
  color: #fff;
  border-color: #2644d7;
}

@media (max-width: 991px) {
  .blog-layout-row {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-page-section {
    padding: 45px 0;
  }

  .blog-card-inner {
    grid-template-columns: 1fr;
  }

  .blog-img-box {
    min-height: 220px;
  }

  .blog-content-box {
    padding: 20px;
  }

  .blog-title-new {
    font-size: 21px;
  }

  .blog-actions-new {
    align-items: flex-start;
  }
}

.blog-details-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.blog-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 10px;
  align-items: flex-start;
}

.blog-details-card {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.blog-details-img {
  background: #eef2f7;
  overflow: hidden;
}

.blog-details-img img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  display: block;
}

.blog-details-body {
  padding: 30px;
}

.blog-details-title {
  margin: 0 0 16px;
  color: #17223b;
  font-family: expo-sans-pro, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaecf0;
  color: #667085;
  font-size: 14px;
}

.blog-details-meta i {
  color: #2644d7;
  margin-right: 6px;
}

.post-content {
  text-align: justify;
  color: #344054;
  font-size: 16px;
  line-height: 1.9;
}

.post-content img,
.main_content img {
  display: block;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
}

.post-content p,
.main_content p {
  margin-bottom: 1rem;
}

.post-content h2,
.post-content h3,
.main_content h2,
.main_content h3 {
  color: #17223b;
  text-align: left;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 12px;
}

.post-content h2,
.main_content h2 {
  font-size: 28px;
}

.post-content h3,
.main_content h3 {
  font-size: 23px;
}

.post-content strong,
.main_content strong {
  font-weight: 700;
}

.post-content ol,
.post-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.post-content ol li {
  list-style: decimal !important;
  margin-bottom: 8px;
}

.post-content ul li {
  list-style: disc !important;
  margin-bottom: 8px;
}

.blog-author-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid #eaecf0;
}

.blog-author-name {
  color: #17223b;
  font-size: 15px;
  margin: 0;
}

.blog-author-name b {
  color: #2644d7;
}

.share-row-new {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.share-label-new {
  font-size: 14px;
  font-weight: 800;
  color: #344054;
  margin-right: 2px;
}

.share-icon-new {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #344054;
  border: 1px solid #eaecf0;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.share-icon-new:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.share-icon-new.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.share-icon-new.in:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.share-icon-new.wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.blog-social-strip {
  margin-top: 28px;
  background: #f2f4f7;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

.blog-social-strip a {
  color: #2644d7;
  font-weight: 700;
  text-decoration: none;
}

.blog-social-strip a:hover {
  text-decoration: underline;
}

.blog-details-sidebar {
  position: sticky;
  top: 100px;
}

.blog-details-sidebar .sidebar,
.blog-details-sidebar aside,
.blog-details-sidebar .widget {
  max-width: 100%;
}

.blog-error-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.07);
}

.btn-bx {
  padding: 3px 6px 4px;
  color: #fff;
  border-radius: 2px;
  margin: 0 5px;
}

@media (max-width: 991px) {
  .blog-details-layout {
    grid-template-columns: 1fr;
  }

  .blog-details-sidebar {
    position: static;
  }

  .blog-details-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .blog-details-section {
    padding: 45px 0;
  }

  .blog-details-body {
    padding: 22px;
  }

  .blog-details-title {
    font-size: 24px;
  }

  .blog-author-share {
    align-items: flex-start;
  }
}

.blog-enquiry-widget {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border: 1px solid rgba(38, 68, 215, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(20, 35, 90, 0.08);
  overflow: hidden;
}

.blog-enquiry-widget .blog-widget-title {
  background: #2644d7;
  color: #ffffff;
  margin: -1px -1px 18px -1px;
  padding: 14px 18px;
  border-radius: 18px 18px 0 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-enquiry-form {
  padding: 0 4px 4px;
}

.blog-enquiry-form .form-group {
  margin-bottom: 5px;
}

.blog-enquiry-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1f2a44;
}

.blog-enquiry-form .asteriskField {
  color: #f00;
}

.blog-enquiry-form .form-control {
  width: 100%;
  height: 35px !important;
  border: 1px solid #d8def3;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 14px;
  color: #222;
  background: #ffffff;
  box-shadow: none;
  outline: none;
  transition: all 0.25s ease;
}

.blog-enquiry-form textarea.form-control {
  min-height: 65px !important;
  resize: vertical;
}

.blog-enquiry-form .form-control:focus {
  border-color: #2644d7;
  box-shadow: 0 0 0 3px rgba(38, 68, 215, 0.12);
}

.captcha-group img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #fff;
}

.captcha-error {
  color: #d70000;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-enquiry-btn {
  width: 100%;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #2644d7, #4c1864);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 18px;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 22px rgba(38, 68, 215, 0.25);
  transition: all 0.25s ease;
}

.blog-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(38, 68, 215, 0.32);
}

@media (max-width: 767px) {
  .blog-enquiry-widget .blog-widget-title {
    font-size: 16px;
    padding: 12px 15px;
  }

  .blog-enquiry-form .form-control {
    height: 42px;
  }

  .blog-enquiry-btn {
    padding: 11px 16px;
  }
}