

        body {
            font-family: 'Hind Siliguri', sans-serif;
            background-color: #f4f7f6;
            direction: ltr;
        }

        /* হেডার ডিজাইন */
        .navbar-main {
            background-color: #1a233a; /* ইমেজের মতো ডার্ক নেভি ব্লু */
            padding: 15px 0;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 700;
            color: #fff !important;
        }
        .nav-link {
            color: #d1d5db !important;
            font-weight: 500;
            margin-right: 15px;
        }
        .nav-link:hover {
            color: #fff !important;
        }

        /* ব্রেকিং নিউজ সেকশন */
        /* ব্রেকিং নিউজ সেকশন আপডেট (7.PNG অনুযায়ী) */
.breaking-news {
    background: #fff;
    padding: 10px 0 0 0; /* নিচের প্যাডিং জিরো করা হলো */
    color: #d93025;
    font-weight: 600;
    border-bottom: none; /* ফুল-স্ক্রিন বর্ডার রিমুভ করা হলো */
}

.breaking-news .container {
    position: relative;
    padding-bottom: 10px; /* লেখা থেকে বর্ডারের দূরত্ব */
}

/* ইমেজের মতো কন্টেইনারের মাপে লাল এবং গ্রে বর্ডার */
.breaking-news .container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px; /* বুটস্ট্র্যাপ কন্টেইনারের ডিফল্ট প্যাডিং */
    right: 12px;
    height: 3.5px; /* বর্ডারের পুরুত্ব */
    background: linear-gradient(to right, #d93025 10%, #e0e0e0 10%); /* শুরুর ১০% লাল, বাকিটা গ্রে */
}

        /* হিরো স্লাইডার */
        .hero-section {
            background: #fff;
            padding: 40px 0;
            border-bottom: 2px solid #eee;
        }
        .carousel-item {
            padding: 20px 0;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a233a;
            line-height: 1.3;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin: 20px 0;
        }
        .btn-read-more {
            background-color: #d93025;
            color: #fff;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }
        .btn-read-more:hover {
            background-color: #b2271d;
            color: #fff;
        }
        .hero-image-container {
            background: #e9ecef;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            position: relative;
        }
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .badge-red {
            background: #d93025;
            color: #fff;
            padding: 5px 15px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* স্লাইডার ডটস */
        .carousel-indicators [data-bs-target] {
            background-color: #1a233a;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 1.8rem; }
            .hero-image-container { margin-top: 20px; }
        }

        /* নিউজ কার্ড স্টাইল */
.section-title {
    font-weight: 700;
    color: #1a233a;
    border-left: 5px solid #d93025;
    padding-left: 15px;
}

.news-card-mini {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.news-card-mini:hover {
    transform: translateY(-3px);
    border-color: #d93025;
}

.img-placeholder-mini {
    width: 60px;
    height: 50px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #ccc;
    flex-shrink: 0;
}

/* জনপ্রিয় লিস্ট স্টাইল */
.popular-list {
    list-style: none;
}

.popular-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-weight: 600;
    color: #444;
    transition: 0.2s;
    cursor: pointer;
}

.popular-list li:hover {
    color: #d93025;
    padding-left: 5px;
}

/* হাইলাইট সেকশন */
.img-placeholder-large {
    width: 100%;
    height: 150px;
    background: #e9ecef;
    border-radius: 5px;
}
/* Bangla Section Title Style */
.section-title-bn {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1a233a;
    position: relative;
    padding-left: 15px;
}

.section-title-bn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: #d93025; /* লাল রঙের স্টাইলিশ ইন্ডিকেটর */
}

.news-card-advanced {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.news-card-advanced:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d93025;
    color: #fff;
    padding: 3px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.card-body-custom {
    padding: 20px;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
}
/* Footer Styles */
.footer-area {
    background-color: #0f172a; /* ডার্ক নেভি ব্লু */
    color: #cbd5e1;
    padding: 70px 0 30px;
    font-family: 'Hind Siliguri', sans-serif;
    border-top: 4px solid #d93025;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: #d93025; /* লাল আন্ডারলাইন */
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: #d93025;
    padding-left: 5px;
}

/* Social Icons */
.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d93025;
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .footer-title::after {
        left: 0; /* লেখা বামে থাকলে আন্ডারলাইনও বামে থাকবে */
    }
    .footer-area {
        padding: 50px 0 20px;
    }
}
   

    /* Contact Section Styles */
.contact-section .footer-links li {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-section i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Responsive Fix for small devices */
@media (max-width: 991px) {
    .contact-section {
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 25px;
    }
}

/* Statistics Section Styles */
.statistics-section {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #fff;
}

.section-main-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: #1a1a1a;
}

.view-all-btn {
    border: 2px solid #333;
    padding: 5px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.view-all-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Big Card */
.main-img {
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.big-news-card:hover .main-img {
    transform: scale(1.05);
}

/* Small Cards & Lists */
.small-img-card img {
    height: 120px;
    object-fit: cover;
}

.small-title {
    font-size: 0.95rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-news-title {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    transition: 0.2s;
}

.list-news-title:hover {
    color: #d93025;
}

.x-small {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .main-img { height: 300px; }
    .section-main-title { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .main-img { height: 220px; }
    .small-img-card img { height: 100px; }
    .col-6 { width: 100%; } /* মোবাইলে এক কলামে */
    .border-end { border-right: none !important; border-bottom: 1px solid #eee; padding-bottom: 10px; }
}
/* --- Election Section Grid Styling --- */
/* --- Election Section Custom Grid --- */

.election-section {
    padding: 40px 0;
    background: #fff;
}

.election-header {
    border-bottom: 2px solid #d93025; /* Red top border from image */
    padding-top: 10px;
    margin-bottom: 25px;
}

.election-header h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #1a233a;
}

/* 3-Column Top Grid */
.election-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.election-card {
    position: relative;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.election-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.election-card-body {
    padding: 15px;
}

/* Fix for the center column links */
.election-center-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.election-link-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #d93025;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.election-link-item:hover {
    background: #fff5f5;
    color: #b2271d;
}

.election-link-item i {
    color: #666; /* Gray icons like the image */
    margin-right: 15px;
    font-size: 1.2rem;
}

/* 6-Column Bottom Grid */
.election-bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.small-news-item img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 2px;
}

.small-news-item .category {
    font-size: 0.8rem;
    color: #0066cc;
    display: block;
    margin-bottom: 5px;
}

.small-news-item .title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
}

.small-news-item .meta {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .election-top-grid { grid-template-columns: 1fr 1fr; }
    .election-bottom-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
    .election-top-grid { grid-template-columns: 1fr; }
    .election-bottom-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- সেকশন ১: ফিচার্ড ভিডিও/গ্যালারি স্লাইডার স্টাইল --- */
.video-news-section {
    background-color: #000;
    padding: 50px 0;
    color: #fff;
    margin-top: 40px;
}
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.video-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.5s;
}
.video-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- সেকশন ২: লিস্ট ভিউ (জনপ্রিয় খবর) --- */
.popular-list-section {
    padding: 40px 0;
    background: #fff;
    margin-top: 40px;
}
.list-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}
.list-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d93025;
    opacity: 0.3;
}
.list-content h6 {
    font-weight: 700;
    margin: 0;
    transition: 0.3s;
}
.list-content h6:hover { color: #d93025; }

/* --- সেকশন ৩: টেকনোলজি থ্রি-কলাম কার্ড --- */
.tech-section {
    background: #fdfdfd;
    padding: 50px 0;
    margin-top: 40px;
}
.tech-card {
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
    height: 100%;
}
.tech-tag {
    background: #1a233a;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    text-transform: uppercase;
}
.tech-card {
    background: #fff;
    border-radius: 8px; /* কোণাগুলো সামান্য রাউন্ড করা হয়েছে */
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; /* ইমেজ যাতে বর্ডারের বাইরে না যায় */
    height: 100%;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px); /* হোভার করলে সামান্য উপরে উঠবে */
}

.tech-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.tech-card .content-padding {
    padding: 0 20px;
}

/* নিউজ সেকশন কাস্টম সিএসএস */
.hover-red:hover {
    color: #dc3545 !important; /* মাউস নিলে লাল রঙ হবে */
    transition: 0.3s ease;
}

.news-img {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.main-news-card:hover .news-img {
    transform: scale(1.05); /* বড় নিউজ ইমেজ জুম হবে */
}

.news-item img {
    transition: transform 0.3s ease;
}

.news-item:hover img {
    transform: scale(1.1); /* ছোট থাম্বনেইল জুম হবে */
}

.extra-small {
    font-size: 13px;
}

.news-section .card {
    border-radius: 10px;
    overflow: hidden;
}

/* টেক্সট লাইন লিমিট করার জন্য (যদি টাইটেল বড় হয়) */
.news-item h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .main-news-card h2 {
        font-size: 1.5rem;
    }
}
 
 
    /* সেকশন হেডার এবং আরও পড়ুন বাটন */
    .section-title {
        font-weight: 700;
        font-size: 1.6rem;
        padding-left: 12px;
        border-left: 6px solid #d32f2f;
        line-height: 1.2;
    }

    .read-more-btn {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: 0.3s;
    }

    .read-more-btn:hover {
        color: #222;
        text-decoration: underline;
    }

    /* নিউজ কার্ড এবং ডানের বর্ডার */
    .custom-news-card {
        padding: 0 15px;
        border-right: 1px solid #e0e0e0;
        height: 100%;
    }

    .no-border {
        border-right: none !important;
    }

    .img-container {
        overflow: hidden;
        border-radius: 4px;
        margin-bottom: 12px;
    }

    .img-container img {
        width: 100%;
        transition: 0.4s;
    }

    .custom-news-card:hover img {
        transform: scale(1.08);
    }

    .news-title {
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .news-title a {
        color: #222;
        text-decoration: none;
    }

    /* শর্ট ডেসক্রিপশন স্টাইল */
    .news-description {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* ৩ লাইনের পর ডট ডট আসবে */
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.6;
        margin-bottom: 10px;
        color: #555 !important;
    }

    /* রেসপন্সিভ সেটিংস */
    @media (max-width: 991px) {
        .col-md-6:nth-child(2n) .custom-news-card {
            border-right: none;
        }
    }

    @media (max-width: 767px) {
        .custom-news-card {
            border-right: none;
            border-bottom: 1px solid #eee;
            margin-bottom: 25px;
            padding-bottom: 15px;
        }
        .section-title {
            font-size: 1.3rem;
        }
    }
/* বিশ্ব সংবাদ সেকশন (2.jpg) কাস্টম স্টাইল */
/* বিশ্ব সংবাদ সেকশন স্টাইল */
.world-section-header {
    border-top: 2px solid #ccc;
    padding-top: 15px;
}

.world-section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.world-section-header h3 span {
    font-size: 1rem;
}

/* বড় টাইটেল ও ডেসক্রিপশন */
.world-big-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s;
}

.world-big-title:hover, .world-small-title:hover {
    color: #d93025;
}

.world-big-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ছোট টাইটেল */
.world-small-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.world-time-text {
    font-size: 0.85rem;
    color: #888;
}

/* ইমেজ হোভার জুম ইফেক্ট */
.world-big-card img, .col-md-6 img {
    transition: transform 0.4s ease;
}

.world-big-card:hover img, .col-md-6:hover img {
    transform: scale(1.03);
}

.world-big-card, .col-md-6 {
    overflow: hidden;
}

/* বর্ডার কন্ট্রোল (ডেস্কটপ ও মোবাইল) */
@media (min-width: 992px) {
    /* বড় সেকশনের মাঝখানের বর্ডার */
    .main-left-border {
        border-right: 1px solid #dee2e6;
    }
}

@media (min-width: 768px) {
    /* ২x২ গ্রিডের মাঝখানের বর্ডার */
    .inner-right-border {
        border-right: 1px solid #dee2e6;
    }
}

@media (max-width: 991px) {
    .main-left-border {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .inner-right-border {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
    }
}
/* বিনোদন সেকশন হেডার */
.ent-section-header {
    border-top: 2px solid #ccc;
    padding-top: 15px;
}

.ent-section-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.ent-section-header h3 span {
    font-size: 1rem;
}

/* ছোট নিউজ কার্ড (বাম ও ডান কলাম) */
.ent-small-item {
    cursor: pointer;
}

.ent-small-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* ২ লাইনের পর ডট ডট আসবে */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ent-small-title:hover {
    color: #d93025;
}

.ent-small-img {
    width: 110px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
}

.ent-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ent-small-item:hover .ent-small-img img {
    transform: scale(1.1);
}

/* বড় নিউজ কার্ড (মাঝের কলাম) */
.ent-main-card {
    cursor: pointer;
}

.ent-main-card img {
    transition: transform 0.4s ease;
}

.ent-main-card:hover img {
    transform: scale(1.03);
}

.ent-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s;
}

.ent-main-title:hover {
    color: #d93025;
}

.ent-main-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* কমন টাইম স্টাইল */
.ent-time {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

/* বর্ডার এবং প্যাডিং (রেসপন্সিভ) */
@media (min-width: 992px) {
    .ent-col-left {
        border-right: 1px solid #dee2e6;
        padding-right: 25px;
    }
    .ent-col-center {
        border-right: 1px solid #dee2e6;
        padding-left: 25px;
        padding-right: 25px;
    }
    .ent-col-right {
        padding-left: 25px;
    }
}

/* মোবাইল ও ট্যাবলেট ভিউয়ের জন্য বর্ডার অ্যাডজাস্টমেন্ট */
@media (max-width: 991px) {
    .ent-col-left, .ent-col-center {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

/* আরও পড়ুন বাটন স্টাইল */
.ent-read-more-btn {
    color: #d93025; /* লাল রং */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.ent-read-more-btn:hover {
    color: #111; /* মাউস নিলে কালো হবে */
}
/* বিশ্ব সেকশনের আরও পড়ুন বাটন স্টাইল */
.world-read-more-btn {
    color: #d93025; /* লাল রং */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.world-read-more-btn:hover {
    color: #111; /* হোভার করলে কালো হবে */
}

/* মোবাইল ভার্সনের জন্য হিরো সেকশনের বিশেষ ডিজাইন */
@media (max-width: 767px) {
    .hero-content h1 { 
        font-size: 1.1rem !important; /* টাইটেল ছোট করা হয়েছে */
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero-desc { 
        font-size: 0.8rem !important; /* ডেসক্রিপশন ছোট করা হয়েছে */
        margin: 10px 0; 
        /* ২ লাইনের বেশি হলে ডট ডট দেখাবে, যাতে জায়গা বেশি না নেয় */
        display: -webkit-box; 
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical; 
        overflow: hidden; 
    }
    
    .btn-read-more { 
        padding: 5px 12px; 
        font-size: 0.75rem; /* বাটন ছোট করা হয়েছে */
    }
    
    .badge-red { 
        padding: 3px 8px; 
        font-size: 0.65rem; 
        margin-bottom: 8px; 
    }
    
    .hero-image-container { 
        min-height: 130px; /* মোবাইলে ইমেজের উচ্চতা কমানো হয়েছে */
        margin-top: 0 !important; /* আগের মার্জিন রিমুভ */
    }
}

/* সব লিংকের আন্ডারলাইন রিমুভ করার জন্য */
a {
    text-decoration: none !important;
}

/* মাউস নিলে (Hover) কালার পরিবর্তন চাইলে এটি রাখতে পারেন */
a:hover {
    text-decoration: none;
}

/* কন্টিনিয়াস (গ্যাপহীন) নিউজ টিকার স্টাইল */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    /* 30s হলো স্পিড, বাড়ালে আস্তে যাবে, কমালে জোরে যাবে */
    animation: ticker 80s linear infinite; 
}

/* মাউস রাখলে স্ক্রল থেমে যাবে */
.ticker-content:hover {
    animation-play-state: paused; 
}

/* এনিমেশন ফ্রেম (এটিই গ্যাপ দূর করবে) */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* অর্ধেক যাওয়ার পর আবার প্রথম থেকে লুপ হবে */
    }
}

/* তাজা খবর লেবেল (ব্যাজ) স্টাইল */
.taja-khobor-badge {
    background-color: #d93025; /* ওয়েবসাইটের মেইন লাল কালার */
    color: #ffffff;
    padding: 4px 14px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(217, 48, 37, 0.3); /* সুন্দর একটি লাল শ্যাডো */
}

.taja-khobor-badge i {
    color: #ffeb3b; /* আইকনের রঙ হলুদ করা হয়েছে হাইলাইট করার জন্য */
    margin-right: 6px;
}

/* নিউজ লিংকের স্টাইল */
.breaking-news-link {
    color: #1a233a; /* ওয়েবসাইটের টাইটেলের ডার্ক নেভি কালার */
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600; /* ফন্ট কিছুটা বোল্ড করা হয়েছে */
    transition: all 0.3s ease;
}

.breaking-news-link:hover {
    color: #d93025; /* মাউস নিলে আপনার ওয়েবসাইটের লাল কালার হবে */
    text-decoration: underline !important;
    text-underline-offset: 4px; /* আন্ডারলাইনটি লেখার একটু নিচ দিয়ে যাবে */
}

/* নিউজগুলোর মাঝখানের ডিভাইডার (|) */
.news-divider {
    color: #ccc;
    font-size: 1rem;
    margin: 0 15px;
    font-weight: 400;
}

/* ডেসক্রিপশন ২ লাইনে সীমাবদ্ধ রাখার জন্য */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ডেস্কটপ ও সাধারণ স্টাইল */
.news-box {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.news-box.left-box {
    border-right: 1px solid #dee2e6; /* মাঝখানের বর্ডার */
    padding-right: 15px;
}

.news-box.right-box {
    padding-left: 15px;
}

.small-cat { font-size: 0.8rem; margin-bottom: 5px; font-weight: 600; }
.list-news-title { font-size: 1.05rem; line-height: 1.4; margin-bottom: 8px; }
.list-news-desc { font-size: 0.85rem; margin-bottom: 8px; }
.list-news-time { font-size: 0.8rem; margin-bottom: 0; }
.custom-hr { margin: 15px 0; opacity: 0.15; border-top: 1px solid #000; }

/* 📱 মোবাইল ভার্সনের জন্য Media Query */
@media screen and (max-width: 767px) {
    .custom-news-wrapper .news-box {
        width: 50% !important; /* জোরপূর্বক ৫০% জায়গা নিবে */
        flex: 0 0 50% !important;
        max-width: 50% !important;
        display: inline-block !important;
    }
    
    .news-box.left-box {
        padding-right: 10px !important;
    }
    
    .news-box.right-box {
        padding-left: 10px !important;
    }

    /* মোবাইলের জন্য ফন্ট সাইজ ছোট করা হয়েছে যাতে লেখা পারফেক্ট থাকে */
    .small-cat { font-size: 0.7rem !important; }
    .list-news-title { font-size: 0.85rem !important; line-height: 1.3 !important; }
    .list-news-desc { font-size: 0.75rem !important; margin-bottom: 5px !important; }
    .list-news-time { font-size: 0.7rem !important; }
    .custom-hr { margin: 10px 0 !important; }
}

/* ইমেজ এবং টেক্সট রেসপন্সিভ করার জন্য কাস্টম স্টাইল */
.custom-thumb-img {
    aspect-ratio: 16 / 10; /* ইমেজগুলো সব ডিভাইসে একই রেশিওতে থাকবে */
    object-fit: cover; /* ইমেজ চ্যাপ্টা হবে না */
}

.custom-card-title {
    font-size: 1rem;
    line-height: 1.4;
}

/* শুধুমাত্র মোবাইল ভার্সনের জন্য */
@media screen and (max-width: 575px) {
    .custom-card-title {
        font-size: 0.85rem !important; /* মোবাইলে টাইটেল একটু ছোট হবে যাতে ২ কলামে জায়গা পায় */
        line-height: 1.3 !important;
    }
}

/* =========================================
   পরিসংখ্যান সেকশনের জন্য কাস্টম CSS (মোবাইল রেসপন্সিভ)
   ========================================= */

/* ইমেজের সাইজ যেন চ্যাপ্টা না হয় */
.custom-thumb-img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* নিচের টেক্সট নিউজের সাধারণ লেআউট (ডেস্কটপ) */
.news-box {
    width: 50%;
    float: left;
    box-sizing: border-box;
}
.news-box.left-box {
    border-right: 1px solid #dee2e6;
    padding-right: 15px;
}
.news-box.right-box {
    padding-left: 15px;
}

/* টেক্সট নিউজের ফন্ট স্টাইল */
.small-cat { font-size: 0.8rem; margin-bottom: 5px; font-weight: 600; }
.list-news-title { font-size: 1.05rem; line-height: 1.4; margin-bottom: 8px; }
.list-news-desc { font-size: 0.85rem; margin-bottom: 8px; }
.list-news-time { font-size: 0.8rem; margin-bottom: 0; }
.custom-hr { margin: 15px 0; opacity: 0.15; border-top: 1px solid #000; clear: both; }

/* ডেসক্রিপশন ২ লাইনে সীমাবদ্ধ রাখার জন্য */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* 📱 শুধুমাত্র মোবাইল ভার্সনের জন্য Media Query */
@media screen and (max-width: 767px) {
    
    /* ১. ইমেজসহ কার্ডগুলোকে (col-6) জোরপূর্বক পাশাপাশি রাখার জন্য */
    .statistics-section .col-lg-5 .row.g-3 > .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    /* মোবাইলে ইমেজের টাইটেল ছোট করা হলো যাতে জায়গা পায় */
    .statistics-section .custom-card-title {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    /* ২. নিচের টেক্সট নিউজগুলোকে জোরপূর্বক পাশাপাশি রাখার জন্য */
    .custom-news-wrapper .news-box {
        width: 50% !important;
        float: left !important;
        box-sizing: border-box !important;
    }
    
    .news-box.left-box {
        padding-right: 8px !important;
    }
    
    .news-box.right-box {
        padding-left: 8px !important;
    }

    /* মোবাইলে টেক্সট নিউজের ফন্ট সাইজ ছোট করা হলো */
    .small-cat { font-size: 0.7rem !important; }
    .list-news-title { font-size: 0.85rem !important; line-height: 1.3 !important; }
    .list-news-desc { font-size: 0.75rem !important; margin-bottom: 5px !important; }
    .list-news-time { font-size: 0.7rem !important; }
    .custom-hr { margin: 10px 0 !important; }
}

/* =========================================
   অফক্যানভাস মেনুর নতুন সলিড ডিজাইন 
   ========================================= */
/* =========================================
   অফক্যানভাস মেনুর নতুন আউটলাইন (Outline) ডিজাইন 
   ========================================= */

.custom-mobile-nav .nav-item {
    margin-bottom: 10px; /* বাটনগুলোর মাঝখানে গ্যাপ */
}

/* সাধারণ অবস্থায় মেনুর স্টাইল (কালো টেক্সট, ব্যাকগ্রাউন্ড নেই, চারদিকে বর্ডার) */
.custom-mobile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #3d629b; /* টেক্সট সম্পূর্ণ কালো */
    background-color: transparent; /* কোনো ব্যাকগ্রাউন্ড কালার নেই */
    border: 1px solid #3d629b; /* চারদিকে একটি সুন্দর হালকা বর্ডার */
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px; /* বর্ডারের কোণাগুলো গোলাকার */
    transition: all 0.3s ease;
}

/* সাধারণ অবস্থায় আইকনের রঙ */
.custom-mobile-nav .nav-link i {
    color: #555555; /* আইকনটি হালকা কালো/গ্রে রাখা হয়েছে যাতে টেক্সট বেশি ফুটে ওঠে */
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.custom-mobile-nav .nav-link {

    color:#000 !important; /* টেক্সট কালো হবে */

}

/* অ্যাক্টিভ বা হোভার অবস্থায় ডিজাইন (বর্ডার এবং টেক্সট লাল হবে, কিন্তু ব্যাকগ্রাউন্ড থাকবে না) */
.custom-mobile-nav .nav-link:hover,
.custom-mobile-nav .nav-link.active {
    background-color: transparent !important; /* এখানেও ব্যাকগ্রাউন্ড কালার থাকবে না */
    color: #d93025 !important; /* হোভার করলে টেক্সট লাল হবে */
    border-color: #d93025 !important; /* হোভার করলে চারদিকের বর্ডারটিও লাল হয়ে যাবে */
}

/* অ্যাক্টিভ/হোভার অবস্থায় আইকনের রঙও লাল হবে */
.custom-mobile-nav .nav-link:hover i,
.custom-mobile-nav .nav-link.active i {
    color: #d93025 !important;
}

/* সোশ্যাল আইকন স্টাইল (আগের মতোই থাকবে) */
.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-circle:hover { transform: translateY(-3px); color: #fff; }
.social-circle.fb { background-color: #1877F2; box-shadow: 0 4px 6px rgba(24, 119, 242, 0.3); }
.social-circle.tw { background-color: #1DA1F2; box-shadow: 0 4px 6px rgba(29, 161, 242, 0.3); }
.social-circle.yt { background-color: #FF0000; box-shadow: 0 4px 6px rgba(255, 0, 0, 0.3); }
.social-circle.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 4px 6px rgba(220, 39, 67, 0.3); }


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; /* শুরুতে লুকানো থাকবে */
    z-index: 999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
}

#backToTop:hover {
    background-color: #1a233a; /* হোভার করলে কালার চেঞ্জ হবে */
    transform: scale(1.1);
}

/* মোবাইল ডিভাইসের জন্য পজিশন কিছুটা পরিবর্তন */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
.iframe-ad-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.iframe-ad-wrapper iframe {
    max-width: 100% !important;
    height: auto;
    border-radius: 8px;
}


