body {
    font-family: "Noto Sans Bengali", "SolaimanLipi", Arial, sans-serif;
    background: #f5f6f7;
    margin: 0;

}

.container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #003366;
    padding: 10px 0;
}

/* THIS IS THE KEY FIX */
.header-text {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;   /* ⬅ forces vertical stacking */
    align-items: center;
}

/* H1 */
.header-text h1 {
    font-size: 22px;
    color: #003366;
    margin: 0;
}

/* Subtitle */
.sub-title {
    font-size: 15px;
    color: #555;
    margin-top: 4px;
}

/* Logos */
.logo-left,
.logo-right {
    height: 70px;
}


/* Breadcrumb */
.breadcrumb {
    background: #e6f0ff;          /* light govt blue */
    color: #003366;               /* dark blue text */
    padding: 8px 15px;
    margin: 10px 0;
    font-size: 14px;
    border-left: 4px solid #003366;
}

.breadcrumb-link {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}



/* FAQ */
.faq-q {
    background: #eef2f6;
    padding: 14px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
    border-left: 4px solid #003366;
}

.faq-a {
    display: none;
    padding: 14px;
    border: 1px solid #ddd;
    border-top: none;
}

/* ===================== */
/* Footer                */
/* ===================== */

.footer {
    background: #003366;
    color: #ffffff;
    padding: 6px 10px;
    margin-top: 30px;
}

.footer-line-1 {
    margin: 2px 0;
    line-height: 1.3;
    text-align: center;
}

.footer-line-2 {
    font-size: 14px;
    opacity: 0.9;
	text-align: center;
}

/* ============================= */
/* Language Selection Blue Bar   */
/* ============================= */

.lang-ribbon {
    width: 100%;
    background: #003366;
    border-bottom: 2px solid #002244;
}

.lang-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6px 10px;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    color: #ffffff;
    box-sizing: border-box;
}

.lang-content label {
    margin-right: 6px;
    font-size: 14px;
}

.lang-content select {
    padding: 4px 6px;
    font-size: 14px;
    border: none;
    background: #ffffff;
    color: #003366;
    cursor: pointer;
}

/* FAQ Section Heading */
.faq-section-title {
    margin-top: 25px;
    padding: 8px 12px;
    background: #003366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Section wrapper */
.faq-section {
    margin-top: 20px;
}

/* Section title (clickable) */
.faq-section-title {
    background: #003366;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

/* Section content hidden initially */
.faq-section-content {
    display: none;
    padding: 5px 0;
}

.faq-section-title::before {
    content: "▶ ";
}

.faq-section-title.active::before {
    content: "▼ ";
}

/* Heading + language switch */
.faq-heading-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Switch button */
.lang-switch-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid #003366;
    color: #003366;
    background: #e6f0ff;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.4px;
    transition: all 0.2s ease;
}

.lang-switch-btn:hover {
    background: #003366;
    color: #ffffff;
}

/* ===== Visitor Counter Blue Box ===== */

.visitor-counter {
    text-align: right;
    font-size: 16px;
    color: #003366;
    margin-top: 12px;
	font-weight: 600;
}

.visitor-box-blue {
    display: inline-block;
    min-width: 60px;
    padding: 4px 10px;
    margin-left: 6px;

    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;

    background-color: #e6f0ff;   
    color: #003366;              
    border: 2px solid #003366;  
    border-radius: 4px;
}




