/*  === Input Sreach Form === */
  .search-wrapper {
    /* max-width: 360px; */
    padding: 18px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e7e5;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.1);
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); */
  }
  
  /* Title */
  .search-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 100%;
    color: #065549;
    text-align: left;
  }
  
  /* Form container */
  .search-field-group .search-input {
    display: flex;
    border: 1px solid #c6dad5;
    border-radius: 8px 0px 0px 8px;
    background-color: #f1f4f3;
    overflow: hidden;
    transition: border-color 0.3s ease;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
  }
  
  /* Input */
  /* .search-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    border: none;
    background: transparent;
    color: #333;
  } */
  
  .search-input::placeholder {
    color: #999;
  }
  
  /* Button */
  .search-button {
    padding: 0 16px;
    background-color: #065549;
    color: #fff;
    border: 1px solid #065549 !important;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0 8px 8px 0px;
  }
  
  
 .search-button:hover ,  .search-button:focus{
    background-color: #043e36 !important;
    color: #fff !important;
  }

   .search-field-group  .search-input:focus {
    border: 1px solid #065549 !important;
    /* border: 1px solid red !important; */
  } 
  

  /* Category  */
.category-card {
    background-color: #ffffff;
    border: 1px solid #e2e7e5;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.1);
    border-radius: 8px;
    padding: 16px 8px 16px 16px;
    /* max-width: 320px; */
    margin: 0 auto;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); */
  }
  
  /* Heading */
  .category-heading {
    font-size: 16px;
    font-weight: 600;
    color: #065549;
    margin-bottom: 12px;
    text-align: left;
  }
  
  /* Category List */
  .category-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  
  /* List Items */
  .category-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.25s ease;
    position: relative;
  }
  
  .category-links li a::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #065549;
    border-radius: 50%;
    display: inline-block;
    padding: 3px;
    /* transition: transform 0.3s ease; */
  }
  
  .category-links li a:hover {
    background-color: #f0f7f6;
    color: #065549;
    /* padding-left: 12px; */
  }
  
  .category-links li a:hover::before {
    /* transform: scale(1.3); */
  }
  .category-links li:not(:last-child){
    border-bottom: 1px solid #e2e7e5;
  }

  .category-links {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
  }

  /* LAtest Post */
.latest-posts-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgb(6 85 73 / 0.1);
    padding: 18px 16px;
    border: 1px solid #e2e7e5;
  }
  
  /* Title */
  .latest-posts-title {
    font-size: 18px;
    font-weight: 600;
    color: #065549;
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Divider */
  .divider-line {
    width: 40px;
    height: 3px;
    background-color: #065549;
    border-radius: 2px;
    margin-bottom: 20px;
  }

  .post-flexbox{
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  /* Posts List */
  .posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* Post Item */
  .post-link {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    border-radius: 8px;
    padding: 8px 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
  }
  
  .post-link:hover {
    background-color: #e7f0ec;
    box-shadow: 0 4px 15px rgb(6 85 73 / 0.15);
    color: #065549;
  }
  
  /* Image Box */
  .post-image-box {
    flex-shrink: 0;
    width: 66px;
    height: 58px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}
  
  .post-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Text Box */
  .post-text-box h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #333;
  }
  
  .post-text-box h6 {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* Icon styling inside h6 */
  .post-text-box h6 i {
    color: #065549;
  }
  

  /* TAg */
.tags-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    border: 1px solid #e2e7e5;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.1);
  }
  
  /* Title */
  .tags-title {
    font-size: 18px;
    font-weight: 600;
    color: #065549;
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Divider */
  .divider-line {
    width: 40px;
    height: 3px;
    background-color: #065549;
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .post-text-box h5:hover{
    color: #065549;
  }
  /* Tag List */
  .tag-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* Individual Tag Item */
  .tag-item a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e6f0ec;
    color: #065549;
    font-weight: 500;
    font-size: 11px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 1px 3px rgb(6 85 73 / 0.12);
  }
  
  .tag-item a:hover {
    background-color: #065549;
    color: #fff;
    box-shadow: 0 4px 15px rgb(6 85 73 / 0.25);
  }
  
  /* Load More Button */
  .load-more-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
    color: #065549;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}
  
  .load-more-btn:hover {
    color: #064b40;
  }
  

  .tag-list-wrapper {
    max-height: 400px;
    overflow-y: auto;
  }

.blog-sidebar-date{
  font-style: italic;
}



  /* Blog Card */

  .blog-card {
    border: 1px solid #dce7e3;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgb(6 85 73 / 0.1);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    background-color: #fff;
  }
  
  .blog-card:hover {
    box-shadow: 0 6px 20px rgb(6 85 73 / 0.2);
  }
  
  .blog-image-link {
    position: relative;
    display: block;
  }
  
  .blog-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .blog-card:hover .blog-image {
    transform: scale(1.05);
  }
  
  .blog-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(6, 85, 73, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .blog-card:hover .blog-overlay {
    opacity: 1;
  }
  
  .blog-text i {
    color: #fff;
    font-size: 2rem;
  }
  
  .card-title-link h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .card-title-link:hover h5 {
    color: #023927;
  }
  
  .card-text {
    font-size: 0.9rem;
    color: #6c757d; /* muted text */
    margin-bottom: 0.8rem;
  }
  
  .read-more-link {
    font-weight: 600;
    color: #065549;
    font-size: 0.95rem;
    display: inline-block;
    /* margin-bottom: 0.6rem; */
    transition: color 0.3s ease;
  }
  
  .read-more-link:hover {
    color: #023927;
    text-decoration: underline;
  }
  
  .blog-date {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
  }
  

  /* === Trending Post ===  */




  /* === Pagination  === */
  .blog-pagination{
    margin: 32px auto 0px;
  }
  .custom-pagination .page-link {
      border: 1px solid #e2e7e5;
      box-shadow: 0 2px 10px rgb(6 85 73 / 0.1);
      color: #065549;
      transition: 0.3s ease;
    }
    .custom-pagination li.disabled .page-link{
        color: #a5a8ab;
    }

  .custom-pagination .page-link:hover {
    background-color: #065549;
    border-color: #065549;
    color: #fff;
  }

  .custom-pagination .page-item.active .page-link {
    background-color: #065549;
    border-color: #065549;
    color: #fff;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.2);
  }


  /* === Mobile Filter Style Start ==== */
  .filter-trigger-box{
    cursor: pointer;
  }
  .filter-offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 10px 16px 14px;
    border: 1px solid #e2e7e5;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.1);
    overflow: hidden;
}

.filter-offcanvas.show {
    left: 0;
}
.close-offcanvas {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 24px;
    cursor: pointer;
    background-color: #065549;
    border: 1px solid #065549;
    color: #fff;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    margin: 0;
}
.filter-icon-box{
    background-color: #065549;
    border: 1px solid #065549;
    color: #fff;
    box-shadow: 0 2px 10px rgb(6 85 73 / 0.2);
    padding: 4.5px;
    border-radius: 8px; 
}
.filter-offcanvas-main-content-wrap{
    height: 788px;
    overflow-y: auto;
    padding-right: 10px;
}


.category-links::-webkit-scrollbar {
    width: 8px;
}

.category-links::-webkit-scrollbar-track {
    background: #f0f7f6;
    border-radius: 10px;
}

.category-links::-webkit-scrollbar-thumb {
    background-color: #40a398;
    border-radius: 10px;
    border: 2px solid #f0f7f6;
}

.category-links::-webkit-scrollbar-thumb:hover {
    background-color: #328a80; 
}



.filter-offcanvas-main-content-wrap::-webkit-scrollbar {
    width: 8px;
}

.filter-offcanvas-main-content-wrap::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

.filter-offcanvas-main-content-wrap::-webkit-scrollbar-thumb {
    background-color: #065549; 
    border-radius: 10px;
    border: 2px solid #f1f1f1; 
}

.filter-offcanvas-main-content-wrap::-webkit-scrollbar-thumb:hover {
    background-color: #05453f;
}

.card-title-link{
  text-decoration: none;
}
.card-title-link:hover{
  text-decoration: none !important;
}

  /* === Mobile Filter Style End ==== */

  @media(max-width:767px){
    .blogpage-sec.main-site-content {
        margin-top: 36px;
    }
    .read-more-link {
        font-size: 14px;
    }
  }

@media (max-width: 767.98px) {
    .searchSticky.sticky-down {
      position: fixed;
      top: 54px;
      z-index: 1020;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      background-color: #fff;
      transition: top 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      border-radius: 0px;
      padding: 12px;
      border-top: 1px solid #dce7e3;
    }
  
    .searchSticky.sticky-up {
      top: 54px !important;
    }
  }
  