body {
    background: #111827 !important;
}

/* breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    border-radius: 0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: #2563eb;
}
/* tag */
.tag-container .tag {
    background: #1f2937;
    color: var(--text-white);
    transition: all 0.5s ease;
}
.tag-container .tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    transition: all 0.4s ease;
}
/* share */
.share-container .share {
    background: #1f2937;
    width: 40px;
    height: 40px;
    color: var(--text-white);
    transition: all 0.5s ease;
}
.share-container .share:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
    transform: translateY(-6px);
}
/* you might like */
.you-might-like {
    background-color: var(--bg-gray);
    padding: 60px 0;
}
.you-might-like h2 {
    font-weight: 700;
    color: var(--color-primary-dark);
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}
.blog-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark, #111827);
    margin-bottom: 10px;
}
.blog-content p {
    font-size: 0.95rem;
    color: var(--color-secondary, #64748b);
    margin-bottom: 15px;
}
.read-more {
    color: var(--color-primary, #2563eb);
    text-decoration: none;
    font-weight: 500;
}
.read-more:hover {
    text-decoration: underline;
}
.swiper {
    padding-bottom: 50px;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}
.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #1c1c1c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.vote-btn i {
    font-size: 16px;
}

.vote-btn:hover {
    background-color: #2c2c2c;
}

latest-news-section {
    position: relative;
    background: #000000;
    z-index: 1;
}

.news-blog-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.news-category-badge {
    margin-bottom: 12px;
}

.news-category-badge span {
    background: rgba(76, 143, 255, 0.2);
    color: #4c8fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 143, 255, 0.3);
}

.news-blog-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-blog-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-meta {
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-date {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 400;
}

.news-read-more {
    color: #4c8fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #6ba3ff;
    text-decoration: none;
}

.latest-news-section .btn1-custom {
    padding: 12px 30px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.latest-news-section .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
    color: #fff;
}

/* Responsive for news cards */
@media (max-width: 768px) {
    .news-blog-img {
        height: 180px;
    }

    .news-blog-content {
        padding: 15px;
    }

    .news-blog-content h5 {
        font-size: 1rem;
    }

    .news-blog-content p {
        font-size: 0.9rem;
    }
}
.news-category-badge a {

text-decoration:none;

}


.news-category-badge a span:hover {

background:rgba(76,143,255,0.4);

}
