.custom-hero {
    background: url(../image/banner-8.png) no-repeat center center / cover;
    background-position: initial;
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    background:#eaeaea;
    padding: 20px;
}
.tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #999;
    position: relative;
    cursor: pointer;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}
.tab.active {
    color: #000;
}
.tab.active::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    width: 130%;
    height: 2px;
    background: #555;
    transform: translateX(-50%);
}
.item {
    display: none;
}
/* Show items when filtered */
.item.show {
    display: block;
}
.blog-filter-tab {
    margin-top: -55px; 
    position: relative;
    z-index: 2;
}
.filter-top{
    position: relative;
    background-color: #000;
}
.blog-filter-tab img{
    height: 180px;
}
.blog-catogory, .blog-date{
    color: #b3b4b6;
    font-size: 12px;
}
.blog-title{
    color: #000;
    font-size: 15px; 
}
#showMoreBtn{
    color: #212121;
    transition: background-color 0.3s ease;
    font-weight: 400;
}
#showMoreBtn:hover{
    color: #fff;
    background-color: #555;
}
.cta-bttn a{
    font-size: 20px;
    letter-spacing: 2px;
    color: #555;
    transition: color 0.3s ease;
}
.cta-bttn a:hover{
    color: #fff;
}
.cta-bttn a::after{
    content: '';
    display: block;
    margin: 4px auto 0;
    width: 0px;
    height: 1px;
    background: #fff;
    letter-spacing: 2px;
    transition: width 0.3s ease;
}
.cta-bttn a:hover::after {
    width: 50%;
    margin: 4px auto 0;
}
.blog-hero h3{
    font-size: 25px;
    letter-spacing: normal;
    font-weight: 700;
}
.blog-hero h6{
    font-size: 14px;
    color: #555;;
}
.blog-details{
    color:#000;
}
.blog-details p{
    margin-bottom: 18px;
}
.blog-details h6{
    font-size: 16px;
    margin-bottom: 17px;
    font-weight: 700;
}
.blog-details ul li{
    font-size: 13px;
    list-style-type: square;
    line-height: 22px;
}
.back-to-post:hover{
    transition: background-color 0.3s ease;
    background-color: #000;
}
.blog-social-icons img{
    width: 14px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(618%) hue-rotate(253deg) brightness(92%) contrast(97%);
    transition: filter 0.3s ease;
}
.blog-social-icons .fb{
    width: 10px;
}
.blog-social-icons img:hover{
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(2799%) hue-rotate(219deg) brightness(96%) contrast(106%);
}
.border-gray{
    border-bottom: 1px solid #c6c7c8;
}
.tags-list li a{
    color:#c6c7c8;
    font-size: 12px;
    transition: color 0.3s ease;
}
.tags-list li a:hover{
    color:#000;
}
.recent-post{
    background-color: #f4f4f4;
}
.recent-post img{
    height: 200px;
}
.recent-post h5{
    position: relative;
    padding-top: 15px;
  }
.recent-post h5::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 2px;
    background-color: #d6d7d7;
}
/* contact page */
.contact-container h2{
    letter-spacing: normal;
    font-size: 20px;
}
.contact-container h2 a, .contact-container h2{
    font-weight: 700;
    font-size:18px;
}
.contact-container h6 a{
    font-size: 13px;
}
.google-map{
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}
/* form */
.form-control, .form-select{
    background-color: #3a3a3a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 0;
}
.form-label {
    font-size: 13px;
    margin-bottom: 5px;
}
.form-label {
    font-size: 13px;
    margin-bottom: 5px;
}
.btn-submit {
    background-color: #3a3a3a;
    color: #fff;
    border: 1px solid #fff;
    padding: 9px 25px;
    letter-spacing: 2px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background-color: #000;
}
textarea {
    resize: none;
}

  @media (max-width: 767px) {
    .tab {
        font-size: 13px;
    }
    .blog-filter-tab img, .recent-post img {
        height: 200px;
    }
    .cta-bttn a{
        font-size: 15px;
    }
    .cta-bttn{
        flex-direction: column;
    }
    .blog-catogory, .blog-date{
        font-size: 11px;
    }
    .blog-title{
        font-size: 14px; 
    }
    .blog-hero .row{
        flex-direction: column-reverse;
    }
    .blog-hero h3{
        font-size: 20px;
    }
    .blog-details-container .row{
        flex-direction: column-reverse;
    }
  }



