.blog-details-section {
  padding: 30px 0;
  font-family: "Poppins", sans-serif;

}


.blog-title {
  font-size: 30px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 20px;
}

.blog-meta img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.meta-item span {
  color: #777;
  font-size: 14px;
}
.blog-meta li {
  display: flex;
  align-items: center;
}

.blog-feature-img {
  border-radius: 10px;
  width: 100%;
}
.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #0a3d62;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 10px 12px;
}
.blog-date h4 {
  font-size: 22px;
  margin-bottom: 2px;
}

/* Author Box */
.blog-author-box {
  width: 50%;
  background: #f4f9ff;
  border-radius: 10px;
  padding: 20px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -60px;
}
.author-name {
  font-size: 18px;
  font-weight: 600;
  color: #0a3d62;
}
.author-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
.author-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}
.author-social a {
  margin-right: 10px;
  color: #0a3d62;
  font-size: 15px;
}

/* Blog Body */
.blog-body p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}
.subheading {
  font-size: 22px;
  font-weight: 600;
  color: #0a3d62;
  margin: 30px 0 15px;
}

/* Blog List */
.blog-list {
padding: 10px 12px;
background-color: #285e78;
border-radius: 25px;
color: #fff;
}
.blog-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
}
.blog-list i {
  color: #fff;
  margin-right: 8px;
}

.main-blg{
  display: flex;

  gap: 20px;
  align-items: center;
}
.quote-box {
  background: #0a3d62;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  position: relative;
}
.quote-icon {
  font-size: 24px;
  color: #fff;
}
.quote-text {
  color: #fff !important;
 font-family: var(--banner-text-font);
  margin-top: 10px;
  font-size: 20px;
}
.quote-author {
  display: block;
  margin-top: 10px;
  color: #ffe66d;
  font-weight: 600;
}

/* Tags & Share */
.blog-tags-share {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.blog-tags .tag-item,
.tag-cloud a {
  background: #f3f3f3;
  padding: 6px 15px;
  border-radius: 25px;
  color: #333;
  text-decoration: none;
  margin: 4px;
  display: inline-block;
  transition: all 0.3s;
}
.blog-tags .tag-item:hover,
.tag-cloud a:hover {
  background-color: #0a3d62;
  color: #fff;
}
.blog-share a {
  margin-left: 10px;
  color: #0a3d62;
  font-size: 15px;
}

/* Comments */
.blog-comments {
  margin-top: 50px;
}
.comment-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.comment-name {
  font-weight: 600;
  color: #0a3d62;
}
.comment-reply {
  color: #0a3d62;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Comment Form */
.custom-input {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ccc;
}
.submit-btn {
  background-color: #0a3d62;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}
.submit-btn:hover {
  background-color: #07406e;
}

/* Sidebar */
.sidebar-widget {
  margin-bottom: 40px;
  border-radius: 25px;
}
.sidebar-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  
  display: inline-block;
  padding-bottom: 5px;
}
.search-box {
  position: relative;
}
.search-box input {
  border-radius: 25px;
  padding: 10px 45px 10px 15px;
  border: 1px solid #ddd;
}
.search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #0a3d62;
}
.category-list li {
  list-style: none;
  margin-bottom: 8px;
}
.category-list a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
.category-list a:hover {
  color: #0a3d62;
  font-weight: 500;
}
.latest-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.latest-post img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-right: 10px;
  object-fit: cover;
}
.latest-date {
  font-size: 13px;
  color: #888;
}
.tag-cloud a {
  margin: 5px;
}

.blog-feature-img{
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}

@media (max-width: 991px) {
  .blog-author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar {
    margin-bottom: 10px;
  }
  .blog-tags-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .blog-title {
    font-size: 24px;
  }
  .subheading {
    font-size: 18px;
  }
  .quote-box {
    text-align: center;
  }
}
