/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa; /* পেজের হালকা গ্রে ব্যাকগ্রাউন্ড */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ন্যাভিগেশন বার */
.navbar {
    display: flex;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.logo img { height: 70px; }
.nav-links { margin-left: 40px; }

.nav-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: bold;
}

.nav-links a.active { color: #0056b3; } /* অ্যাকটিভ মেন্যু */

.nav-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.nav-buttons button {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-cyan { background: #00B4D8; color: white; }
.btn-login { background: #004d99; color: white; }

/* ব্রেডক্রাম্ব */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 50px;
    font-size: 14px;
    color: #555;
}

.breadcrumb .current { color: #888; }

/* FAQ মেইন কন্টেন্ট */
.faq-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 120px auto; /* এখানে 120px দেওয়া হয়েছে ফুটারের আগে বড় গ্যাপের জন্য */
    flex: 1;
}

/* FAQ ক্যাটাগরি ট্যাবগুলো */
.faq-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 0;
    overflow-x: auto; /* স্ক্রিন ছোট হলে স্ক্রল করা যাবে */
}

.tab {
    padding: 10px 0 15px 0;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    position: relative;
}

.tab:hover {
    color: #0056b3;
}

.tab.active {
    color: #0056b3;
    font-weight: bold;
}

/* অ্যাকটিভ ট্যাবের নিচের নীল দাগ */
.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0056b3;
}

/* প্রশ্নগুলোর লিস্ট */
.faq-list {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-item {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* একদম শেষের আইটেমটার নিচের বর্ডার সরাতে */
.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background-color: #f9fbff; /* হোভার করলে হালকা নীলচে হবে */
}

/* > তীর চিহ্নটা */
.arrow {
    color: #888;
    font-weight: bold;
    font-size: 14px;
}

/* ফুটার */
.footer {
    background-color: #004d99;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    font-size: 14px;
}

.footer img { height: 30px; }

/* চ্যাটবট */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

.chatbot img {
    width: 70px;
    border-radius: 10px;
}

/* ল্যাঙ্গুয়েজ ড্রপডাউন পজিশন */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-list {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    width: 120px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; /* প্রথমে লুকোনো থাকবে */
    z-index: 200;
}

.lang-list li {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.lang-list li:hover {
    background-color: #f5f5f5;
    color: #0056b3;
}

/* ক্লিক করলে দেখানোর জন্য ক্লাস */
.lang-list.show {
    display: block;
}

/* গুগলের সব রকমের ওপরের ফ্রেম এবং প্যানেল চিরতরে হাইড করার জন্য */
iframe.goog-te-banner-frame, 
.goog-te-banner-frame, 
#goog-te-hoverplace, 
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* অনুবাদ হওয়ার সময় গুগল যে পপআপ বা উইন্ডো দেখায় তা ব্লক করা */
.skiptranslate {
    display: none !important;
}