/* ================= PROGRESS BAR ================= */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(135deg, #1b6fff, #3b89ff);
  z-index: 9999;
}


/* ===============================
   Single Blog Hero Section
================================= */

.blog-single-hero {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 90px 0 60px;
  text-align: center;
}

.blog-single-hero .blog-category {
  display: inline-block;
  color: #2B7CFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-single-hero h1 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
  /* color: #1a1a1a; or color: #0b1f4d;
    margin: 15px 0 25px;*/
  margin: 15px auto 25px;
  max-width: 900px;
}

.blog-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #777;
  font-size: 16px;
  font-weight: 500;
}

.blog-meta i {
  color: #2B7CFF;
  margin-right: 8px;
  font-size: 18px;
}

.blog-featured-image {
  margin-top: 45px;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 25px;
  display: block;
}


@media (max-width: 992px) {

  .blog-single-hero {
    padding: 70px 20px 50px;
  }

  .blog-single-hero .blog-category {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-single-hero h1 {
    font-size: 34px;
    line-height: 1.3;
    max-width: 750px;
    margin: 12px auto 20px;
  }

  .blog-meta {
    font-size: 15px;
  }

  .blog-meta i {
    font-size: 17px;
  }

  .blog-featured-image {
    margin-top: 35px;
    border-radius: 22px;
    max-height: 500px;
  }
}

/* Tablets */
@media (max-width: 768px) {

  .blog-single-hero {
    padding: 60px 15px 40px;
  }

  .blog-single-hero .blog-category {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .blog-single-hero h1 {
    font-size: 30px;
    line-height: 1.35;
    margin: 10px auto 18px;
  }

  .blog-meta {
    font-size: 14px;
  }

  .blog-meta i {
    font-size: 16px;
    margin-right: 5px;
  }

  .blog-featured-image {
    margin-top: 30px;
    border-radius: 18px;
    max-height: 400px;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {

  .blog-single-hero {
    padding: 45px 15px 30px;
  }

  .blog-single-hero .blog-category {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .blog-single-hero h1 {
    font-size: 24px;
    line-height: 1.4;
    margin: 10px auto 15px;
  }

  .blog-meta {
    font-size: 13px;
  }

  .blog-meta li {
    display: block;
  }

  .blog-meta i {
    font-size: 15px;
  }

  .blog-featured-image {
    margin-top: 25px;
    border-radius: 15px;
    max-height: 300px;
  }
}

/* Extra Small Phones */
@media (max-width: 375px) {

  .blog-single-hero {
    padding: 35px 12px 25px;
  }

  .blog-single-hero .blog-category {
    font-size: 11px;
  }

  .blog-single-hero h1 {
    font-size: 21px;
    line-height: 1.35;
  }

  .blog-meta {
    font-size: 12px;
  }

  .blog-featured-image {
    margin-top: 20px;
    border-radius: 12px;
    max-height: 240px;
  }
}


/* ===============================
   Blog Content Section
================================= */

.blog-content-section {
    padding: 80px 0;
}


/* ===============================
   Table Of Contents
================================= */

.table-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.table-content > div {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}


.table-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.table-content ul li {
    margin-bottom: 12px;
}


.table-content ul li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}


.table-content ul li a:hover {
    color: #2B7CFF;
}


/* ===============================
   Blog Content Body
================================= */

.blog-content-body {
    color: #374151;
    font-size: 17px;
    line-height: 1.8;
}


.blog-content-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 20px;
}


.blog-content-body h3 {
    font-size: 25px;
    font-weight: 700;
    color: #111827;
    margin: 30px 0 15px;
}

.blog-content-body a {
  text-decoration: none;
  color:#2B7CFF;
}


.blog-content-body p {
    margin-bottom: 20px;
}


.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
}


.blog-content-body ul,
.blog-content-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}


.blog-content-body blockquote {
    border-left: 4px solid #2B7CFF;
    padding-left: 20px;
    color: #666;
    font-style: italic;
    margin: 30px 0;
}

/* ==========================================
   Responsive - Blog Content Section
========================================== */


@media (max-width: 992px) {

    .blog-content-section {
        padding: 60px 0;
    }

    .table-content {
        padding: 22px;
        border-radius: 12px;
        top: 80px;
    }

    .table-content > div {
        font-size: 18px;
    }

    .table-content ul li a {
        font-size: 14px;
    }

    .blog-content-body {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-content-body h2 {
        font-size: 28px;
        margin: 35px 0 18px;
    }

    .blog-content-body h3 {
        font-size: 22px;
        margin: 30px 0 15px;
    }

    .blog-content-body img {
        border-radius: 12px;
    }

}

@media (max-width: 768px) {

    .blog-content-section {
        padding: 50px 0;
    }

    /* Hide TOC on small screens */
    .table-content {
        display: none;
    }

    .blog-content-body {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-content-body h2 {
        font-size: 26px;
        line-height: 1.35;
        margin: 30px 0 15px;
    }

    .blog-content-body h3 {
        font-size: 21px;
        line-height: 1.4;
        margin: 25px 0 12px;
    }

    .blog-content-body p {
        margin-bottom: 18px;
    }

    .blog-content-body ul,
    .blog-content-body ol {
        padding-left: 22px;
    }

    .blog-content-body li {
        margin-bottom: 8px;
    }

    .blog-content-body img {
        width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 10px;
    }

    .blog-content-body blockquote {
        padding-left: 15px;
        margin: 25px 0;
        font-size: 15px;
    }

    .blog-content-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}

@media (max-width: 576px) {

    .blog-content-section {
        padding: 40px 0;
    }

    .blog-content-body {
        font-size: 15px;
        line-height: 1.9;
    }

    .blog-content-body h2 {
        font-size: 24px;
    }

    .blog-content-body h3 {
        font-size: 20px;
    }

    .blog-content-body p {
        margin-bottom: 16px;
    }

    .blog-content-body ul,
    .blog-content-body ol {
        padding-left: 20px;
    }

    .blog-content-body img {
        margin: 18px 0;
        border-radius: 8px;
    }

    .blog-content-body blockquote {
        padding-left: 12px;
        font-size: 14px;
    }

}

@media (max-width: 375px) {

    .blog-content-section {
        padding: 30px 0;
    }

    .blog-content-body {
        font-size: 14px;
    }

    .blog-content-body h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .blog-content-body h3 {
        font-size: 18px;
    }

    .blog-content-body img {
        border-radius: 6px;
    }

    .blog-content-body blockquote {
        padding-left: 10px;
        font-size: 13px;
    }

}


/* ===============================
   Related Blogs
================================= */

.related-blogs{
    padding: 40px 0;
    background: #fff;
}

.related-blogs .section-heading div{
    font-size: 34px;
    font-weight: 700;
    color: #111827;  
}

/* ===============================
   Blog Card
================================= */

.blog-card{
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(15,23,42,.05);
}

.blog-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.blog-image{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* ===============================
   Card Body
================================= */

.blog-body{
    padding: 24px;
}

.blog-body .category{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2B7CFF;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-body > div{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-body p{
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.blog-body a{
    color: #2B7CFF;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.blog-body a:hover{
    color: #0f5de6;
    padding-left: 4px;
}

/* ===============================
   Responsive
================================= */

@media (max-width:992px){

    .related-blogs{
        padding: 70px 0;
    }

    .blog-image{
        height: 220px;
    }

    .blog-body{
        padding: 22px;
    }

    .blog-body > div{
        font-size: 20px;
    }

}

@media (max-width:768px){

    .related-blogs{
        padding: 60px 0;
    }

    .related-blogs .section-heading div{
        font-size: 28px;
    }

    .blog-image{
        height: 210px;
    }

    .blog-body{
        padding: 20px;
    }

    .blog-body > div{
        font-size: 19px;
    }

}

@media (max-width:576px){

    .related-blogs{
        padding: 50px 0;
    }

    .blog-image{
        height: 200px;
    }

    .blog-body{
        padding: 18px;
    }

    .blog-body > div{
        font-size: 18px;
    }

    .blog-body p{
        font-size: 14px;
    }

}



/*
.blog-featured-image {
   margin-top: 45px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
   
}*/



/* ==========================
   AUTO TABLE OF CONTENT
========================== 
.table-content {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, .08);
  margin-bottom: 30px;

}
.table-content div {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;

}
#tableOfContents {
  list-style: none;
  padding: 0;
  margin: 0;

}
#tableOfContents li {
  margin-bottom: 12px;

}
#tableOfContents a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: .3s;

}
#tableOfContents a:hover {
  color: #2B7CFF;

}
#tableOfContents .child-heading {
  padding-left: 18px;

}
#tableOfContents .child-heading a {
  font-size: 14px;

} */



/*
.blog-hero{
padding:120px 6% 60px;
background:#020617; 
color:white;
text-align:center;
}

.blog-hero h1{
font-size:42px;
max-width:900px;
margin:auto;
}

.blog-meta{
margin-top:15px;
color:#94a3b8;
}

.blog-image img{
width:100%;
max-width:900px;
display:block;
margin:auto;
border-radius:10px;

object-fit: cover; 
}

.blog-content{
padding:60px 6%;
}

.content-container{
max-width:800px;
margin:auto;
line-height:1.8;
font-size:17px;
}

.btn-secondary{

   background: #1DC9A9 !important;
   font-size: 14px;
   border: none;
   border-radius: 30px;
   margin-bottom: 10px;
   padding: 9px 14px;
   color: var(--title-color);
   cursor: pointer;
}
.btn-secondary:hover {
   background: #1DC9A9 !important;
  color: var(--title-color);
  border: none;
}


.quote{
  padding:0px 0px 20px 0px;
}

.blog-quote{
max-width:800px;
margin:40px auto;
font-style:italic;
border-left:5px solid #1DC9A9; 
padding-left:20px;
color:#cbd5f5;
line-height: 1.5;

}



.related-blogs{
padding:0px 6%;
background:#020617;
color:#fff;
text-align:center;
}

.related-blogs h2{
font-size:36px;
margin-bottom:50px;
}
*/