.header-counters {
    display: none !important;
}
/* Login button hide korar short CSS */
a.btn.btn-secondary[href*="login"] {
    display: none !important;
}
/* =========================================
   1. Intro Section Layout (Top Block)
========================================= */
.tm-intro-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.tm-intro-text {
    flex: 1; 
}

.tm-intro-text h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.tm-intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tm-intro-video {
    flex-basis: 45%; 
}

/* --- Superfast YouTube Facade --- */
.tm-custom-video-box {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    border-radius: 20px; /* তোমার আগের ডিজাইনের মতো ২০পিক্সেল */
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* তোমার আগের প্রিমিয়াম শ্যাডো */
}

.tm-video-top-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding-top: 15px;
    text-decoration: none;
    font-family: sans-serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

.tm-video-top-title:hover {
    text-decoration: underline;
}

.tm-video-click-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 5;
    background-color: #000;
}

.tm-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tm-video-click-area:hover .tm-video-thumb {
    opacity: 0.6;
}

.tm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    z-index: 6;
    transition: background-color 0.3s ease;
}

.tm-play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}

.tm-video-click-area:hover .tm-play-btn {
    background-color: #ff0000;
}

#tm-iframe-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border: none;
}

/* Mobile Devices (ফোন থেকে দেখলে) */
@media (max-width: 768px) {
    .tm-intro-section {
        flex-direction: column;
    }
    .tm-intro-text {
        text-align: center; /* মোবাইলে সব মাঝখানে থাকবে */
    }
    .tm-intro-video {
        width: 100%;
    }
}


/* =========================================
   2. Expandable SEO Article Section (Fade-Out Design)
========================================= */
.tm-seo-article-section {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.tm-seo-article-box {
    background-color: #ffffff;
    border: 1px solid #e3e7ed;
    border-radius: 10px;
    padding: 30px;
}

.tm-seo-article-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1a365d;
}

.tm-seo-article-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 15px;
}

/* --- The Magic Fade-out Effect and Centered Arrow --- */
.tm-seo-details {
    position: relative;
}

/* (আগের .tm-preview-text ক্লাসটি ডিলিট করা হয়েছে কারণ ওটার জন্য লেখা অর্ধেক কাটা দেখাচ্ছিল) */

.tm-seo-details summary {
    display: block;
    cursor: pointer;
    list-style: none;
    text-align: center;
    /* এই সাদা গ্রেডিয়েন্টটাই ওপরের নরমাল লেখাকে ঝাপসা করে দেখাবে */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
    margin-top: -65px; /* অ্যারো এবং সাদা শ্যাডোকে ওপরের লেখার ওপর টেনে আনবে */
    padding-top: 65px; 
    position: relative;
    z-index: 10;
    outline: none;
}

.tm-seo-details summary::-webkit-details-marker {
    display: none;
}

/* মাঝখানের V অ্যারো আইকন */
.tm-seo-details summary .arrow-icon {
    display: inline-block;
    font-size: 40px; /* আইকন বড় করা হয়েছে */
    color: #6b7280; /* ছাই রঙ */
    line-height: 0.5;
    transition: all 0.3s ease;
}

.tm-seo-details summary:hover .arrow-icon {
    color: #1a365d; /* হোভার করলে নীল হবে */
    transform: translateY(3px); /* হালকা নিচে নামবে */
}

/* আর্টিকেল ওপেন হওয়ার পর (ঝাপসা ভাবটা গায়েব হয়ে যাবে) */
.tm-seo-details[open] summary {
    background: transparent;
    margin-top: 0px;
    padding-top: 20px;
    margin-bottom: 20px;
}

.tm-seo-details[open] summary .arrow-icon {
    transform: rotate(180deg); /* ওপেন হলে অ্যারো উল্টে যাবে */
}

.tm-seo-details-content {
    animation: fadeIn 0.5s ease-in-out;
}

.tm-seo-details-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a365d;
}

.tm-seo-list {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tm-seo-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tm-seo-article-box {
        padding: 20px;
        text-align: left; /* মোবাইলে পড়ার সুবিধার জন্য টেক্সট বাম দিকে থাকবে */
    }
}
.social-link {
    transition: all 0.3s ease;
    opacity: 0.7;
}
.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.trustpilot-widget-footer {
    margin-top: 15px;
    padding: 10px 0;
}

.trustpilot-widget-footer a {
    color: #ffffff; /* ফুটারের ব্যাকগ্রাউন্ডের ওপর ভিত্তি করে কালার চেঞ্জ করতে পারো */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.trustpilot-widget-footer a:hover {
    opacity: 0.8;
}

.tp-stars {
    color: #00b67a; /* ট্রাস্টপাইলটের আসল সবুজ রঙ */
    letter-spacing: 2px;
}
/* Header/Horizontal Ads এর জন্য নির্দিষ্ট জায়গা ফাঁকা রাখা */
.ad.ad-h {
    min-height: 100px; /* অ্যাড লোড হওয়ার আগে ১০০ পিক্সেল জায়গা ফাঁকা থাকবে */
    width: 100%;
    display: block;
}

/* Header/Horizontal Ads এর জন্য */
.ad.ad-h {
    min-height: 100px; 
}

/* Sidebar/Vertical Ads এর জন্য */
.ad.ad-v {
    min-height: 600px; 
}

/* মোবাইল স্ক্রিনের জন্য */
@media (max-width: 768px) {
    .ad.ad-v, .ad.ad-h {
        min-height: 250px; 
    }
}

/* কুকি ব্যানারকে ভাসমান (Fixed) করে CLS জিরো করার ম্যাজিক */
#cookieConsent {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    max-width: 320px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
}

/* মোবাইল স্ক্রিনের জন্য সুন্দর করে সাইজ ঠিক রাখা */
@media (max-width: 768px) {
    #cookieConsent {
        left: 5% !important;
        right: 5% !important;
        width: 90%;
        max-width: none;
        bottom: 20px !important;
    }
}