/* ============================================================
   MIIPLC — Design system (from approved template)
   Edit brand colours / fonts here once → applies site-wide.
   ============================================================ */
:root {
  --primary:       #0A5C3E;
  --primary-light: #0F7A52;
  --primary-pale:  #E8F5EF;
  --accent:        #F4A100;
  --accent-light:  #FFF4DC;
  --dark:          #0D1B12;
  --text:          #2E3D35;
  --muted:         #6B7E74;
  --border:        #D8E8E0;
  --bg-soft:       #F5FAF7;
  --white:         #FFFFFF;
  --radius:        12px;
  --radius-lg:     20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Topbar ── */
.topbar { background: var(--primary); padding: 7px 0; font-size: 13px; color: rgba(255,255,255,.8); }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: #fff; }

/* ── Navbar ── */
.navbar { background: var(--white); padding: 0; box-shadow: 0 1px 0 var(--border); position: sticky; top: 0; z-index: 1000; }
.navbar-brand img { height: 44px; }
.navbar-brand .brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--primary); line-height: 1.2; max-width: 160px;
}
.nav-link { font-size: 14px; font-weight: 500; color: var(--text) !important; padding: 1.25rem .9rem !important; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link.active { border-bottom: 2px solid var(--primary); }
.navbar .btn-quote {
  background: var(--primary); color: #fff !important; border-radius: 8px;
  padding: .5rem 1.25rem !important; font-size: 13px; font-weight: 600; margin-left: .5rem;
}
.navbar .btn-quote:hover { background: var(--primary-light); }
.dropdown-menu { border: 0.5px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: .5rem; }
.dropdown-item { font-size: 13px; border-radius: 6px; padding: .5rem .85rem; }
.dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }
.lang-switch a { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); padding: 0 4px; }
.lang-switch a.active { color: #fff; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--dark) 0%, #1A3A28 100%); padding: 80px 0 0; overflow: hidden; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230F7A52' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(244,161,0,.15); color: var(--accent);
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 99px;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary-custom {
  background: var(--accent); color: var(--dark); font-weight: 600; font-size: 14px;
  padding: .75rem 1.75rem; border-radius: var(--radius); border: none; transition: background .2s, transform .15s;
}
.btn-primary-custom:hover { background: #e59600; transform: translateY(-1px); color: var(--dark); }
.btn-outline-custom {
  background: transparent; color: #fff; font-weight: 500; font-size: 14px;
  padding: .75rem 1.75rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
}
.btn-outline-custom:hover { border-color: #fff; background: rgba(255,255,255,.05); color: #fff; }
.hero-img-wrap { display: flex; align-items: flex-end; justify-content: center; padding-top: 2rem; }
.hero-img-wrap img { max-height: 380px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
/* promo image — যেকোনো অনুপাতের banner: column-এর বেশি চওড়া হবে না, বিকৃত হবে না, মোবাইলে auto */
.hero-promo .hero-img-wrap img { max-width: 100%; width: auto; height: auto; max-height: 420px; border-radius: 12px; }
.hero-stats { background: rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; margin-top: 3rem; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.stat-item .lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* ── Section base ── */
section { padding: 72px 0; }
.section-eyebrow { font-size: 12px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--dark); margin-bottom: 1rem; }
.section-lead { font-size: 15px; color: var(--muted); max-width: 540px; }

/* ── Services ── */
.services-section { background: var(--bg-soft); }
.service-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; transition: box-shadow .25s, transform .2s, border-color .2s; height: 100%; }
.service-card:hover { box-shadow: 0 8px 32px rgba(10,92,62,.1); transform: translateY(-4px); border-color: var(--primary); }
.service-icon { width: 56px; height: 56px; background: var(--primary-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 1.25rem; }
.service-card h5, .service-card h2 { font-size: 16px; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.service-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { gap: 8px; }

/* ── Why Choose Us ── */
.why-item { display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); transition: background .2s; }
.why-item:hover { background: var(--bg-soft); }
.why-icon { width: 44px; height: 44px; min-width: 44px; background: var(--primary-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); }
.why-item h6 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── News ticker ── */
.news-bar { background: var(--primary-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .75rem 0; overflow: hidden; }
.news-label { background: var(--primary); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 99px; white-space: nowrap; }
.news-ticker { font-size: 13px; color: var(--primary); overflow: hidden; flex: 1; }
.ticker-inner { display: inline-flex; gap: 3rem; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-inner a { color: var(--primary); font-weight: 500; }
.ticker-inner a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg-soft); }
.testimonial-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.stars { color: var(--accent); font-size: 14px; margin-bottom: .75rem; }
.testimonial-card p { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--primary); }
.t-name { font-size: 14px; font-weight: 600; }
.t-role { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #1A5C40 100%); padding: 72px 0; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 15px; }
.btn-cta { background: var(--accent); color: var(--dark); font-weight: 600; font-size: 14px; padding: .85rem 2rem; border-radius: var(--radius); border: none; transition: background .2s; }
.btn-cta:hover { background: #e59600; color: var(--dark); }

/* ── Breadcrumb ── */
.breadcrumb-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: .85rem 0; }
.breadcrumb-bar .breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-bar a { color: var(--primary); }
.breadcrumb-bar .breadcrumb-item.active { color: var(--muted); }

/* ── Inner page header (সব ভেতরের পেজের সবুজ হেডার + breadcrumb) ── */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, #1A3A28 100%); padding: 48px 0 40px; color: #fff; }
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 640px; margin: 0; }
.page-header .breadcrumb { margin: 0 0 1rem; font-size: 13px; }
.page-header .breadcrumb a { color: var(--accent); }
.page-header .breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.6); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ভেতরের পেজের মূল কন্টেন্ট অংশ */
.page-content { padding: 56px 0; }

/* Circular/notice কার্ড */
.circular-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; transition: box-shadow .2s, border-color .2s; }
.circular-card:hover { box-shadow: 0 6px 20px rgba(10,92,62,.08); border-color: var(--primary); }
.circular-card .num { width: 34px; height: 34px; min-width: 34px; background: var(--primary-pale); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.circular-card h6 { font-size: 15px; margin: 0 0 .25rem; }
.circular-card a { color: var(--primary); }

/* circular-এর বড় ছবি যাতে বেশি বড় না হয় (portrait notice scan) */
.page-content .zoomable { max-width: 640px; width: 100%; height: auto; }

/* ── Product detail page ── */
.product-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.product-list li { display: flex; gap: .6rem; align-items: flex-start; padding: .35rem 0; font-size: 14px; color: var(--text); }
.product-list li i { color: var(--primary); font-size: 15px; margin-top: 3px; }
.product-section h2 { color: var(--dark); }

/* product ContentHtml (admin RTE থেকে) — h2/p/list সুন্দর দেখাতে */
.product-content { font-size: 14.5px; line-height: 1.85; color: var(--text); }
.product-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 1.6rem 0 .6rem; }
.product-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 1.3rem 0 .5rem; }
.product-content p { margin: 0 0 .9rem; }
.product-content ul, .product-content ol { margin: .25rem 0 1rem; padding-left: 1.25rem; }
.product-content li { margin: .3rem 0; }
.product-content a { color: var(--primary); text-decoration: underline; }
.product-content > :first-child { margin-top: 0; }

/* product detail-এর পাশের CTA box */
.product-cta { background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 90px; }
.product-cta h5 { font-size: 16px; margin-bottom: .5rem; }
.product-cta p { font-size: 13px; color: var(--muted); margin-bottom: 1rem; }
.btn-outline-dark-custom { background: transparent; color: var(--primary); font-weight: 600; font-size: 14px; padding: .65rem 1rem; border-radius: var(--radius); border: 1px solid var(--primary); transition: background .2s, color .2s; }
.btn-outline-dark-custom:hover { background: var(--primary); color: #fff; }

/* Accordion-কে brand রঙে মানাই */
.accordion-button:not(.collapsed) { background: var(--primary-pale); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .15rem rgba(10,92,62,.15); }
.accordion-button { font-size: 14px; font-weight: 600; }
.accordion-body { font-size: 14px; color: var(--text); }

/* ── Team / person cards (Board, Committee, Employees, Shariah) ── */
.person-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; height: 100%; transition: box-shadow .25s, transform .2s; }
.person-card:hover { box-shadow: 0 8px 28px rgba(10,92,62,.1); transform: translateY(-4px); }
.person-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--primary-pale); }
.person-photo-fallback { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: var(--primary-pale); color: var(--primary); font-size: 2.5rem; font-weight: 700; }
.person-body { padding: 1rem; }
.person-body h5 { font-size: 15px; margin: 0 0 .25rem; color: var(--dark); }
.person-body .role { font-size: 12.5px; color: var(--primary); font-weight: 600; }
.person-body .meta { font-size: 12px; color: var(--muted); margin-top: .35rem; }
.person-body .meta a { color: var(--muted); }
.person-body .btn-details { margin-top: .6rem; font-size: 12px; }

/* Company profile facts table */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table th, .profile-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: 14px; text-align: left; vertical-align: top; }
.profile-table th { width: 38%; color: var(--dark); font-weight: 600; background: var(--bg-soft); }

/* Branch cards */
.branch-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; height: 100%; transition: box-shadow .2s, border-color .2s; }
.branch-card:hover { box-shadow: 0 6px 20px rgba(10,92,62,.08); border-color: var(--primary); }
.branch-card h5 { font-size: 15px; color: var(--primary); margin-bottom: .5rem; }
.branch-card p { font-size: 13px; color: var(--muted); margin: .2rem 0; }
.branch-card i { color: var(--primary); width: 18px; }

/* committee block */
.committee-block { margin-bottom: 2.5rem; }
.committee-block h3 { font-size: 18px; color: var(--dark); border-left: 3px solid var(--accent); padding-left: .6rem; margin-bottom: 1rem; }

/* ── Financial reports list ── */
.report-year { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.report-year:last-child { border-bottom: none; }
.report-year-label { min-width: 64px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; color: var(--primary); }
.report-files { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.report-link { display: flex; align-items: center; gap: .65rem; background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: 8px; padding: .65rem 1rem; font-size: 14px; color: var(--text); transition: background .2s, border-color .2s; }
.report-link:hover { background: var(--primary-pale); border-color: var(--primary); color: var(--primary); }
.report-link .bi-file-earmark-pdf { color: #c0392b; font-size: 18px; }

/* Credit rating box */
.rating-box { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; }
.rating-box .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.rating-box .val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); margin-top: .25rem; }

/* Policy text page */
.policy-text h4 { font-size: 16px; color: var(--primary); margin: 1.5rem 0 .5rem; }
.policy-text p, .policy-text li { font-size: 14px; line-height: 1.8; color: var(--text); }
.policy-text ul { padding-left: 1.25rem; margin-bottom: .5rem; }

/* ── Contact page ── */
.contact-info-card { background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; height: 100%; }
.contact-info-card h4 { font-size: 18px; color: var(--primary); }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.contact-row:last-of-type { border-bottom: none; }
.contact-ic { width: 40px; height: 40px; min-width: 40px; background: var(--primary-pale); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-val { font-size: 14px; color: var(--text); }
.contact-val a { color: var(--primary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 0.5px solid var(--border); height: 100%; min-height: 380px; }

/* ── Gallery ── */
.gallery-tile { display: block; background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: box-shadow .25s, transform .2s; }
.gallery-tile:hover { box-shadow: 0 8px 28px rgba(10,92,62,.12); transform: translateY(-4px); }
.gallery-tile-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--primary-pale); }
.gallery-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-tile:hover .gallery-tile-img img { transform: scale(1.06); }
.gallery-count { position: absolute; bottom: 10px; right: 10px; background: rgba(13,27,18,.75); color: #fff; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 99px; }
.gallery-tile-body { padding: 1rem 1.25rem; }
.gallery-tile-body h5 { font-size: 15px; margin: 0 0 .35rem; color: var(--dark); }
.gallery-date { font-size: 12px; color: var(--muted); }

/* album detail-এর প্রতিটি ছবি */
.gallery-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); border: 0.5px solid var(--border); }

/* ── Image lightbox (click করলে ছবি zoom হয়ে popup-এ বড় দেখায়) ── */
.zoomable { cursor: zoom-in; transition: transform .2s, box-shadow .2s; }
.zoomable:hover { box-shadow: 0 8px 28px rgba(10,92,62,.18); }

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,18,.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
  opacity: 0; transition: opacity .2s;
}
.lightbox-overlay.open { display: flex; opacity: 1; }
.lightbox-overlay img {
  max-width: 95%; max-height: 92vh;
  border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.5);
  animation: lb-zoom .2s ease;
}
@keyframes lb-zoom { from { transform: scale(.92); } to { transform: scale(1); } }
.lightbox-close {
  position: fixed; top: 18px; right: 24px;
  width: 42px; height: 42px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── Footer ── */
footer { background: var(--dark); padding: 60px 0 0; color: rgba(255,255,255,.65); }
footer h6 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,.65); font-size: 13px; display: block; margin-bottom: .4rem; }
footer a:hover { color: var(--accent); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-top: .75rem; max-width: 240px; }
.social-icons { display: flex; gap: 10px; margin-top: 1rem; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65) !important; font-size: 16px; transition: background .2s, color .2s; }
.social-icon:hover { background: var(--primary-light); color: #fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 1.25rem 0; font-size: 12px; color: rgba(255,255,255,.35); }
.partner-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1rem; }
.partner-badge { background: rgba(255,255,255,.06); border: 0.5px solid rgba(255,255,255,.1); border-radius: 6px; padding: 5px 12px; font-size: 11px; color: rgba(255,255,255,.5); }

/* ── Back to top ── */
#backToTop { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--primary); color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 999; border: none; box-shadow: 0 4px 12px rgba(10,92,62,.3); transition: background .2s; }
#backToTop:hover { background: var(--primary-light); }

/* ── Utility ── */
.badge-islami { background: var(--accent-light); color: #7A4F00; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 99px; }

@media (max-width: 767px) {
  .hero { padding: 60px 0 0; }
  .hero h1 { font-size: 1.75rem; }
  .stat-divider { display: none; }
  section { padding: 48px 0; }
}

/* ============================================================
   Blog — list cards + article + sidebar
   ============================================================ */
/* ── Blog list card ── */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
             overflow: hidden; display: flex; flex-direction: column;
             transition: transform .2s, box-shadow .2s; box-shadow: 0 2px 14px rgba(10,92,62,.06); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(10,92,62,.14); }
.blog-card-img-link { position: relative; display: block; overflow: hidden; }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-lang-badge { position: absolute; top: 10px; right: 10px; background: rgba(10,92,62,.9);
                   color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 99px; }
.blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { display: inline-block; background: var(--primary-pale); color: var(--primary);
            font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
            margin-bottom: 8px; text-transform: uppercase; letter-spacing: .3px; align-self: flex-start; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.blog-card-title a { color: var(--dark); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; flex: 1; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card-meta i { color: var(--primary); margin-right: 3px; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--primary); text-decoration: none; align-self: flex-start; }
.blog-read-more:hover { color: var(--primary-light); }
.blog-read-more i { transition: transform .2s; }
.blog-read-more:hover i { transform: translateX(3px); }

/* ── Blog article (detail) ── */
.blog-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.blog-article-meta i { color: var(--primary); margin-right: 3px; }
.blog-lang-tag { background: var(--primary-pale); color: var(--primary); font-size: 11px;
                 font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.blog-article-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); cursor: zoom-in; }
.blog-article-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.blog-article-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 28px 0 12px; }
.blog-article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 22px 0 10px; }
.blog-article-body p { margin-bottom: 16px; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 16px 1.2rem; }
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body a { color: var(--primary); text-decoration: underline; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 12px 0; }
.blog-article-body blockquote { border-left: 4px solid var(--accent); background: var(--bg-soft);
                                padding: 12px 18px; margin: 16px 0; border-radius: 0 8px 8px 0; color: var(--text); }

/* ── Blog tags ── */
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tag { background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
            font-size: 12px; padding: 4px 12px; border-radius: 99px; }
.blog-share { padding-top: 18px; border-top: 1px solid var(--border); }

/* ── Error page (404 / 500) ── */
.error-page { padding: 90px 0; }
.error-code { font-size: clamp(72px, 16vw, 140px); font-weight: 900; line-height: 1;
              color: var(--primary-pale); -webkit-text-stroke: 2px var(--primary); }
.error-title { font-size: clamp(22px, 4vw, 34px); font-weight: 800; color: var(--primary); margin: 8px 0 14px; }
.error-text { font-size: 15px; color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.error-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Product sidebar: related products + blog link (internal linking) ── */
.related-box { margin-top: 20px; background: var(--bg-soft); border: 1px solid var(--border);
               border-radius: var(--radius); padding: 18px 20px; }
.related-box-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px;
                     padding-bottom: 8px; border-bottom: 2px solid var(--primary-pale); }
.related-products { list-style: none; margin: 0 0 12px; padding: 0; }
.related-products li { border-bottom: 1px solid var(--border); }
.related-products li:last-child { border-bottom: none; }
.related-products a { display: block; padding: 8px 0; font-size: 14px; color: var(--text); text-decoration: none; }
.related-products a:hover { color: var(--primary); }
.related-products i { color: var(--primary); margin-right: 8px; }
.related-blog-link { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary); text-decoration: none; }
.related-blog-link:hover { color: var(--primary-light); }

/* ── Blog sidebar ── */
.blog-sidebar-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.blog-sidebar-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 14px;
                      padding-bottom: 10px; border-bottom: 2px solid var(--primary-pale); }
.blog-related-item { display: flex; gap: 12px; align-items: center; padding: 8px 0; text-decoration: none;
                     border-bottom: 1px solid var(--border); }
.blog-related-item:last-child { border-bottom: none; }
.blog-related-item img { width: 64px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.blog-related-item span { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.blog-related-item:hover span { color: var(--primary); }

/* ============================================================
   Travel OMP policy certificate — main-site style, mobile-friendly
   ============================================================ */
.omp-wrap { max-width: 820px; }

/* status banner (active/expired) — centered */
.omp-status { display: flex; flex-direction: column; align-items: center; text-align: center;
              gap: 4px; border-radius: var(--radius); padding: 28px 22px; margin-bottom: 26px;
              color: #fff; box-shadow: 0 6px 22px rgba(10,92,62,.15); }
.omp-status i { font-size: 42px; margin-bottom: 4px; line-height: 1; }
.omp-status strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem;
                     font-weight: 700; letter-spacing: -.01em; }
.omp-status span { font-size: .92rem; opacity: .9; }
.omp-status--active { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.omp-status--expired { background: linear-gradient(135deg, #b02a2a, #d64545);
                       box-shadow: 0 6px 22px rgba(176,42,42,.18); }

/* cards */
.omp-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
            margin-bottom: 18px; overflow: hidden; box-shadow: 0 2px 14px rgba(10,92,62,.05); }
.omp-card-head { background: var(--primary-pale); color: var(--primary);
                 font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
                 font-size: 1rem; letter-spacing: -.01em; padding: 15px 20px;
                 border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 9px; }
.omp-card-head i { font-size: 1.1rem; }
.omp-card-body { padding: 18px 22px; }

/* label–value rows (mobile-এ stack হয়) */
.omp-details { display: flex; flex-direction: column; }
.omp-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
           padding: 12px 0; border-bottom: 1px solid var(--border); }
.omp-row:last-child { border-bottom: none; }
.omp-label { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase;
             letter-spacing: .04em; flex-shrink: 0; }
.omp-val { text-align: right; font-size: 14.5px; font-weight: 600; color: var(--dark); word-break: break-word; }
.omp-row--total { margin-top: 4px; padding-top: 14px; border-top: 2px solid var(--primary-pale); border-bottom: none; }
.omp-row--total .omp-label { color: var(--primary); }
.omp-row--total .omp-val { color: var(--primary); font-size: 1.15rem; font-weight: 800; }

.omp-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 9px;
             border-radius: 99px; margin-left: 6px; }
.omp-badge--green { background: var(--primary-pale); color: var(--primary); }
.omp-badge--red { background: #fde8e8; color: #b02a2a; }

.omp-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
               margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--border); }
.omp-paid { margin-top: 12px; text-align: center; color: var(--primary); font-weight: 700; }
.omp-paid i { color: var(--accent); }

.omp-limits { list-style: none; margin: 0; padding: 0; }
.omp-limits li { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
                 padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.omp-limits li:last-child { border-bottom: none; }
.omp-terms { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 13.5px; }
.omp-terms li { margin-bottom: 8px; }

/* not found */
.omp-notfound { text-align: center; padding: 50px 20px; }
.omp-notfound i { font-size: 54px; color: var(--muted); }
.omp-notfound h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin: 14px 0 8px; }
.omp-notfound p { color: var(--muted); max-width: 440px; margin: 0 auto 22px; }

/* mobile: label আর value আলাদা লাইনে + button full-width */
@media (max-width: 576px) {
  .omp-row { flex-direction: column; gap: .15rem; }
  .omp-val { text-align: left; }
  .omp-status { padding: 22px 16px; }
  .omp-status i { font-size: 36px; }
  .omp-status strong { font-size: 1.2rem; }
  .omp-actions { flex-direction: column; }
  .omp-actions .btn-primary-custom, .omp-actions .btn-outline-dark-custom { width: 100%; text-align: center; }
}

/* ── Travel Insurance quote form ── */
.quote-card { max-width: 720px; background: #fff; border: 1px solid var(--border);
              border-radius: var(--radius); padding: 28px 26px; box-shadow: 0 2px 16px rgba(10,92,62,.06); }
.quote-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
                       color: var(--primary); display: flex; align-items: center; gap: 8px;
                       padding-bottom: 10px; margin-bottom: 16px; border-bottom: 2px solid var(--primary-pale); }
.quote-form .form-label { font-weight: 600; font-size: 13.5px; color: var(--text); margin-bottom: 4px; }
.quote-form .form-control, .quote-form .form-select { border-radius: 8px; border-color: var(--border); }
.quote-form .form-control:focus, .quote-form .form-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(10,92,62,.12); }
.quote-form .req { color: #cc3333; }

/* modern intro header */
.quote-intro { display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
               padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.quote-intro-icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
                    background: var(--primary-pale); color: var(--primary);
                    display: flex; align-items: center; justify-content: center; font-size: 28px; }
.quote-intro-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem;
                     font-weight: 800; color: var(--primary); margin: 0; line-height: 1.2; }
.quote-intro-sub { font-size: 13.5px; color: var(--muted); margin: 4px 0 0; }

/* বড় touch-friendly input */
.quote-form .form-control-lg, .quote-form .form-select-lg { padding: 11px 14px; font-size: 15px; }
.quote-form .form-label { display: block; }

/* easy date — Day/Month/Year dropdown row */
.date-row .form-select { text-align: center; text-align-last: center; }
.date-invalid .form-select { border-color: #dc3545; }

.quote-submit { padding: 14px; font-size: 16px; font-weight: 700; }
.quote-foot { display: flex; align-items: center; justify-content: center; gap: 6px;
              font-size: 12.5px; color: var(--muted); margin: 10px 0 0; }
.quote-foot i { color: var(--primary); }

@media (max-width: 576px) {
  .quote-card { padding: 20px 16px; }
  .quote-intro-icon { width: 46px; height: 46px; font-size: 22px; }
  .quote-intro-title { font-size: 1.1rem; }
}

/* ── Travel page: persistent "Get a Quote" CTA ── */
/* desktop: ডান পাশে slim vertical tab (scroll করলেও থাকে) */
.tquote-side {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 990;
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--dark); font-weight: 800; font-size: 14px;
  text-decoration: none; padding: 16px 10px; border-radius: 10px 0 0 10px;
  box-shadow: -3px 3px 14px rgba(0,0,0,.22); writing-mode: vertical-rl; letter-spacing: .3px;
  transition: background .2s, padding-left .2s;
}
.tquote-side i { font-size: 18px; }
.tquote-side:hover { background: #ffb52e; color: var(--dark); padding-left: 16px; }

/* mobile: navbar-এর নিচে sticky top bar */
.tquote-mobile { position: sticky; top: 56px; z-index: 980;
  background: var(--accent); box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.tquote-mobile a { display: flex; justify-content: center; align-items: center; gap: 8px;
  padding: 11px 14px; color: var(--dark); font-weight: 800; font-size: 15px; text-decoration: none; }

/* ── About Us page ── */
.about-lead { font-size: 15px; line-height: 1.9; color: var(--text); }
.about-lead.muted { color: var(--muted); }
.about-section { margin-top: 3rem; }
.about-section > h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.about-section > .section-sub { font-size: 14px; color: var(--muted); max-width: 760px; margin-bottom: 1.5rem; }
.about-section p { font-size: 14.5px; line-height: 1.85; color: var(--text); }
/* service-card heading এখন h3 (আগে h5 ছিল) — দেখতে একই রাখি */
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
/* mission/vision/value কার্ড — why-item-এর কাছাকাছি */
.value-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; height: 100%; }
.value-card .value-icon { width: 48px; height: 48px; background: var(--primary-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); margin-bottom: 1rem; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }
/* FAQ */
.faq-list { margin-top: 1rem; }
.faq-item { border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.35rem; margin-bottom: .85rem; background: var(--white); }
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 .4rem; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Company Profile page ── */
.cp-intro { font-size: 15px; line-height: 1.85; color: var(--text); max-width: 820px; margin-bottom: 2rem; }
/* key facts strip */
.cp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.cp-stat { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1rem; text-align: center; }
.cp-stat .cp-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.cp-stat .cp-stat-lbl { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
/* grouped info cards */
.cp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cp-card { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1.65rem; }
.cp-card h2 { font-size: 15px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .4px; margin: 0 0 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .5rem; }
.cp-card h2 i { font-size: 17px; }
.cp-dl { margin: 0; }
.cp-row { display: flex; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--border); }
.cp-row:last-child { border-bottom: 0; }
.cp-row dt { flex: 0 0 42%; font-size: 13.5px; color: var(--muted); font-weight: 500; margin: 0; }
.cp-row dd { flex: 1; font-size: 13.5px; color: var(--text); font-weight: 600; margin: 0; }
.cp-row dd a { color: var(--primary); word-break: break-word; }
.cp-card.cp-span2 { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .cp-stats { grid-template-columns: repeat(2, 1fr); }
  .cp-grid { grid-template-columns: 1fr; }
  .cp-row { flex-direction: column; gap: 2px; }
  .cp-row dt { flex-basis: auto; }
}

/* ── Committee page (professional, প্রতি committee আলাদা panel) ── */
.committee-list { display: grid; gap: 1.75rem; }
.committee-panel { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .25s, border-color .2s; }
.committee-panel:hover { box-shadow: 0 10px 34px rgba(10,92,62,.09); border-color: var(--primary); }
/* header bar */
.committee-head { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.5rem; background: linear-gradient(135deg, var(--primary-pale) 0%, #fff 100%); border-bottom: 1px solid var(--border); }
.committee-head .c-icon { width: 46px; height: 46px; min-width: 46px; background: var(--primary); color: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.committee-head .c-title { flex: 1; min-width: 0; }
.committee-head h2 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.3; }
.committee-head .c-num { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: .5px; }
.committee-head .c-count { font-size: 12px; font-weight: 600; color: var(--primary); background: #fff; border: 1px solid var(--border); padding: 5px 12px; border-radius: 99px; white-space: nowrap; }
/* members */
.committee-body { padding: 1.35rem 1.5rem; }
.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .85rem; }
.member { display: flex; align-items: center; gap: .8rem; padding: .7rem .85rem; border: 0.5px solid var(--border); border-radius: var(--radius); background: var(--bg-soft); }
.member.is-lead { background: var(--primary-pale); border-color: var(--primary); }
.member .avatar { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.member.is-lead .avatar { background: var(--accent); color: var(--dark); }
.member .m-info { min-width: 0; }
.member .m-name { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.25; }
.member .m-role { font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; margin-top: 2px; }
.member.is-lead .m-role { color: var(--primary); }
@media (max-width: 575px) {
  .member-grid { grid-template-columns: 1fr; }
  .committee-head { flex-wrap: wrap; }
}

/* ── Rich full-width product page (motor ইত্যাদি — travel-এর মতো) ── */
.rich-product { padding: 8px 0 0; }
/* "Other Insurance Products" cross-link section (মাঝে) */
.other-products { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.other-products > .container > h2 { text-align: center; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--dark); margin: 0 0 .35rem; }
.other-products > .container > p { text-align: center; color: var(--muted); font-size: 15px; margin: 0 0 2rem; }
.op-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; max-width: 1000px; margin: 0 auto; }
.op-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center;
  background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px 14px;
  color: var(--dark); font-weight: 600; font-size: 14px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.op-card:hover { box-shadow: 0 8px 26px rgba(10,92,62,.1); transform: translateY(-3px); border-color: var(--primary); color: var(--primary); text-decoration: none; }
.op-card i { font-size: 28px; color: var(--primary); }
.op-card.op-all i { color: var(--accent); }
/* FAQ section (full-width pages) */
.faq-section { padding: 56px 0; }
.faq-section > .container > h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--dark); }
