
:root {
    --red: #E82D38;
    --red-dark: #96281b;
    --navy: #0d1b2a;
    --navy-light: #1a2d42;
    --off-white: #f8f7f4;
    --muted: #6b7280;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    color: #1a1a1a;
}

.brand-icon {
    background: var(--red);
    color: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
}

.brand-sub {
    font-size: .65rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}

.navbar .nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: #333;
    padding: 6px 14px !important;
    transition: color .2s;
}

.navbar .nav-link:hover {
    color: var(--red);
}

.navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    min-width: 200px;
    padding: 8px 0;
    animation: fadeDown .2s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    font-size: .83rem;
    padding: 8px 18px;
    transition: background .15s, color .15s;
}

.navbar .dropdown-item:hover {
    background: #fef2f2;
    color: var(--red);
}

.btn-contact {
    background: var(--red);
    color: #fff !important;
    border-radius: 5px;
    padding: 7px 18px !important;
    font-size: .83rem !important;
}

.btn-contact:hover {
    background: var(--red-dark) !important;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    background: var(--navy);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    opacity: 5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(13, 27, 42, .82) 40%, rgba(13, 27, 42, .5) 100%);*/
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--red);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--red);
}

.hero-desc {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hero-sub {
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    margin-bottom: 36px;
}

.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 5px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.btn-red:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
    padding: 12px 26px;
    border-radius: 5px;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
}

.hero-stats .stat-item {
    padding: 22px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats .stat-item:last-child {
    border-right: none;
}

.hero-stats  .stat-label {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.hero-stats .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0;
}

/* ── WHY TURKEY ── */
.why-section {
    padding: 90px 0;
}

.why-text {
    font-size: .95rem;
    line-height: 1.8;
    color: #4b5563;
}

.why-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: color .2s;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li:hover {
    color: var(--red);
}

.why-list li::before {
    content: '▶';
    color: var(--red);
    font-size: .55rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── ECONOMIC DASHBOARD ── */
.dashboard-section {
    background: var(--off-white);
    padding: 80px 0;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    transition: box-shadow .2s, transform .2s;
}

.stat-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.stat-card-label {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-card-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-card-sub {
    font-size: .76rem;
    color: var(--red);
    margin-top: 6px;
}

.view-dashboard {
    font-size: .83rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

.view-dashboard:hover {
    text-decoration: underline;
}

/* ── SECTORS ── */

/* মেইন সেকশন প্যাডিং এবং কালার */
.sectors-section {
    padding: 100px 0;
    background-color: #fff; /* ছবির মতো সাদা ব্যাকগ্রাউন্ড */
}

/* ছবির মতো Eyebrow ডিজাইন (বাম পাশের লাল ড্যাশ সহ) */
.image-section-eyebrow {
    font-family: 'Times New Roman', Times, serif; /* ছবির মতো ট্রাডিশনাল ফন্ট */
    font-size: .85rem;
    color: #cb1c2b; /* ছবির মতো গাঢ় লাল */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

.image-section-eyebrow .eyebrow-dash {
    width: 20px;
    height: 1px;
    background-color: #cb1c2b; /* ছবির মতো লাল লাইন */
}

/* ছবির মতো মেইন টাইটেল */
.image-section-title {
    font-family: 'Times New Roman', Times, serif; /* ছবির মতো ফন্ট */
    font-size: 2.5rem;
    color: #121f2d; /* ছবির মতো কালো */
    font-weight: 500;
    margin-bottom: 70px;
    letter-spacing: -1.2px;
}

/* মেইন গ্রিড এবং তার ইন্টারনাল বর্ডার ম্যাজিক */
.image-sectors-grid {
    border-top: 1px solid #e0e6ed; /* শুধু টপে ১টা বর্ডার */
    border-left: 1px solid #e0e6ed; /* শুধু বামে ১টা বর্ডার */
}

/* প্রতিটি কার্ডের ডিজাইন */
.image-sector-card {
    /* বর্ডার ম্যানেজমেন্ট যাতে ছবিতে যেমন আছে তেমন ইন্টারনাল বর্ডার এফেক্ট হয় */
    border-right: 1px solid #e0e6ed;
    border-bottom: 1px solid #e0e6ed;
    padding: 35px 30px;
    position: relative;
    transition: all .25s ease; /* কার্ডে ক্লিক করলে যেমন একটা ডার্ক এফেক্ট আসে */
    cursor: pointer;
    height: 100%;
}

/* কার্ড হোভার এফেক্ট (ছবির মতো হালকা ডার্ক প্যাটার্ন) */
.image-sector-card:hover {
    background-color: #f7f9fc; /* হালকা ডার্ক টোন */
}

/* কার্ডের ভেতরের টাইটেল */
.image-sector-card h5 {
    font-family: 'Times New Roman', Times, serif; /* ছবির মতো ফন্ট */
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #121f2d; /* ছবির মতো কালো */
}

/* কার্ডের ভেতরের ডেসক্রিপশন */
.image-sector-card p {
    font-family: 'Open Sans', sans-serif; /* ক্লিন ফন্ট */
    font-size: .8rem;
    color: #4a5568; /* ছবির মতো হালকা গ্রে */
    margin: 0;
    line-height: 1.6;
}

/* কার্ডের ভেতরের ওপরের অ্যারো আইকন (↗) */
.image-sector-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: .8rem;
    color: #718096; /* ছবির মতো হালকা গ্রে */
    transition: all .2s;
}

/* ছবির মতো 'View all sectors' বাটন */
.view-dashboard {
    font-family: 'Times New Roman', Times, serif;
    font-size: .9rem;
    color: #121f2d;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
    display: inline-block;
    padding: 10px 0;
}

.view-dashboard:hover {
    color: #cb1c2b; /* হোভার করলে লাল হবে */
    text-decoration: underline; /* হোভার করলে আন্ডারলাইন হবে */
}

/* মবাইল রেসপন্সিভনেস (ছবির মতো ইন্টারনাল বর্ডার ঠিক রাখার জন্য) */
@media (max-width: 991.98px) {
    .image-sectors-grid {
        border-right: 1px solid #e0e6ed; /* মবাইলে রাইট বর্ডারও লাগবে */
    }
}

/* ── BILATERAL ── */
.bilateral-section {
    background: var(--off-white);
    padding: 90px 0;
}

.bilateral-text {
    font-size: .95rem;
    line-height: 1.8;
    color: #4b5563;
}

.collab-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    transition: color .2s;
}

.collab-item:last-child {
    border-bottom: none;
}

.collab-item:hover {
    color: var(--red);
}

.badge-active {
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    background: #fef2f2;
    padding: 3px 8px;
    border-radius: 3px;
}

/* ── INVESTMENT GUIDE ── */
.guide-section {
    padding: 90px 0;
}

.step-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    transition: box-shadow .2s, border-color .2s;
}

.step-card:hover {
    box-shadow: 0 6px 22px rgba(192, 57, 43, .1);
    border-color: #f0a9a2;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.step-card h6 {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 8px;
}

.step-card p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── NEWS ── */
.news-section {
    background: var(--off-white);
    padding: 90px 0;
}

.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
    transform: translateY(-4px);
}

.news-tag {
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 12px;
}

.news-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    font-size: .78rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.news-tag.bd {
    color: var(--red);
}

/* ── CTA ── */
.cta-section {
    background: var(--navy);
    padding: 90px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, .65);
    font-size: .93rem;
    max-width: 500px;
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    background: #0a1520;
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
}

.footer-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-link {
    display: block;
    font-size: .82rem;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding-top: 20px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 12px 0;
        border-top: 1px solid var(--border);
        margin-top: 8px;
    }

    .hero-stats .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .hero-stats .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/*why turkey page style*/

/* ── PAGE HERO ── */
.page-hero {
    background: var(--off-white);
    padding: 80px 0 70px;
}

.page-hero-eyebrow {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 0;
}

.page-hero h1 span {
    color: var(--red);
    display: block;
}

.page-hero-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 580px;
    margin-top: 20px;
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0;
}

.body-text {
    font-size: .95rem;
    line-height: 1.8;
    color: #4b5563;
}

/* ── OVERVIEW STATS ── */
.overview-section {
    padding: 90px 0;
}

.big-stat-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    transition: box-shadow .2s, transform .2s;
}

.big-stat-card:hover {
    box-shadow: 0 8px 28px rgba(192, 57, 43, .1);
    transform: translateY(-4px);
}

.big-stat-label {
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.big-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.big-stat-sub {
    font-size: .75rem;
    color: var(--red);
    margin-top: 8px;
}

/* ── ECONOMY DASHBOARD ── */
.economy-section {
    background: var(--off-white);
    padding: 90px 0;
}

.econ-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}

.econ-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.econ-label {
    font-size: .62rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.econ-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.econ-sub {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 6px;
}

/* chart cards */
.chart-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
}

.chart-card-title {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.chart-card-sub {
    font-size: .78rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ── BILATERAL ── */
.bilateral-section {
    padding: 90px 0;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    transition: color .2s;
}

.focus-item:last-child {
    border-bottom: none;
}

.focus-item:hover {
    color: var(--red);
}

.focus-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── BUSINESS CULTURE ── */
.culture-section {
    background: var(--off-white);
    padding: 90px 0;
}

.culture-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}

.culture-card:hover {
    box-shadow: 0 8px 28px rgba(192, 57, 43, .1);
    border-color: var(--red);
    transform: translateY(-4px);
}

.culture-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.culture-card p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── INVESTMENT ADVANTAGES ── */
.advantages-section {
    padding: 90px 0;
}

.adv-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.adv-cell {
    padding: 32px 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.adv-cell:hover {
    background: #fef2f2;
}

.adv-cell:nth-child(2n) {
    border-right: none;
}

.adv-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.adv-cell h6 {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.adv-cell p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .adv-grid {
        grid-template-columns:1fr;
    }

    .adv-cell {
        border-right: none !important;
    }

    .adv-cell:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .adv-cell:last-child {
        border-bottom: none;
    }
}

/*sector page style*/


/* ── STATISTICS ── */
.stats-section {
    background: var(--off-white);
    padding: 90px 0;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.stat-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.stat-label {
    font-size: .62rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.stat-sub {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 7px;
}

.chart-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    margin-top: 28px;
}

.chart-card-label {
    font-size: .63rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.chart-card-title {
    font-size: .85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* ── OPPORTUNITIES & RISKS ── */
.outlook-section {
    padding: 90px 0;
}

.opp-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    height: 100%;
}

.opp-card-heading {
    font-family: 'Inter', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
}

.opp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: .84rem;
    line-height: 1.6;
    color: #374151;
    transition: color .2s;
}

.opp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opp-item:hover {
    color: var(--red);
}

.opp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.opp-dot.green {
    background: #16a34a;
}

.opp-dot.amber {
    background: #d97706;
}

.risk-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    height: 100%;
}

.risk-card-heading {
    font-family: 'Inter', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
}

/* ── REFERENCES ── */
.references-section {
    background: var(--off-white);
    padding: 70px 0;
}

.ref-link {
    display: block;
    font-size: .85rem;
    color: var(--red);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.ref-link:last-child {
    border-bottom: none;
}

.ref-link:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

/*Contact page style*/

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 90px 0;
}

/* Form */
.contact-form-wrap {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px;
}

.form-label-custom {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 7px;
    display: block;
}

.form-control-custom {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: .88rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-control-custom:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .08);
}

.form-control-custom::placeholder {
    color: #c4c9d4;
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

/* Sidebar cards */
.sidebar-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 18px;
}

/* Direct channels */
.channel-item {
    margin-bottom: 16px;
}

.channel-item:last-child {
    margin-bottom: 0;
}

.channel-label {
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 3px;
}

.channel-value {
    font-size: .86rem;
    color: #1a1a1a;
}

.channel-value a {
    color: var(--red);
    text-decoration: none;
}

.channel-value a:hover {
    text-decoration: underline;
}

/* Partners */
.partner-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}

.partner-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.partner-item:hover .partner-name {
    color: var(--red-dark);
}

.partner-name {
    font-size: .86rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color .2s;
}

.partner-desc {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/*News Page style*/

/* ── NEWS LIST ── */
.news-list-section {
    padding: 80px 0 100px;
}

.news-article {
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
}

.news-article:first-child {
    padding-top: 0;
}

.news-article:last-child {
    border-bottom: none;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-tag {
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
}

.article-tag.economy {
    color: var(--red);
}

.article-tag.renewables {
    color: #0ea5e9;
}

.article-tag.bilateral {
    color: var(--red);
}

.article-date {
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .06em;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.article-title:hover {
    color: var(--red);
}

.article-body {
    font-size: .93rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 720px;
    margin-bottom: 22px;
}

.read-more-label {
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
}

.source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.source-link {
    font-size: .82rem;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}

.source-link:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.source-link .arrow {
    font-size: .7rem;
}

/*Experts page style*/

/* ── CATEGORY SECTIONS ── */
.category-section {
    padding: 70px 0;
}

.category-section.bg-light-alt {
    background: var(--off-white);
}

.category-eyebrow {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.category-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.category-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.category-desc {
    font-size: .93rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 32px;
}

/* Expert grid */
.expert-grid {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.expert-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.expert-cell {
    padding: 26px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .18s;
}

.expert-cell:last-child {
    border-right: none;
}

.expert-row:last-child .expert-cell {
    border-bottom: none;
}

.expert-cell:hover {
    background: #fef9f9;
}

.expert-cell:hover .expert-request {
    color: var(--red-dark);
}

.expert-name {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 8px;
}

.expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.expert-tag {
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.expert-tag::after {
    content: ' ·';
    margin-right: 2px;
}

.expert-tag:last-child::after {
    content: '';
}

.expert-request {
    font-size: .82rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.expert-request:hover {
    color: var(--red-dark);
}

@media (max-width: 767px) {
    .expert-row {
        grid-template-columns: 1fr;
    }

    .expert-cell {
        border-right: none;
    }

    .expert-row:last-child .expert-cell:last-child {
        border-bottom: none;
    }

    .expert-row .expert-cell {
        border-bottom: 1px solid var(--border);
    }
}

/*investment guide page style*/
/* ── STEPS ── */
.steps-section {
    padding: 90px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.step-cell {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .18s;
}

.step-cell:nth-child(2n) {
    border-right: none;
}

.step-cell:nth-last-child(-n+2):not(:nth-child(2n) ~ *) {
    border-bottom: none;
}

.step-cell:last-child {
    border-bottom: none;
}

/* if odd total, last item spans full or sits alone */
.step-cell.full-row {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
    max-width: 50%;
}

.step-cell:hover {
    background: #fef9f9;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.step-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns:1fr;
    }

    .step-cell {
        border-right: none !important;
    }

    .step-cell.full-row {
        max-width: 100%;
    }
}

/* ── STRUCTURES TABLE ── */
.structures-section {
    background: var(--off-white);
    padding: 90px 0;
}

.structures-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.structures-table thead tr {
    background: #fff;
}

.structures-table th {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.structures-table td {
    font-size: .84rem;
    padding: 18px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.55;
    color: #374151;
}

.structures-table tr:last-child td {
    border-bottom: none;
}

.structures-table tbody tr {
    background: #fff;
    transition: background .15s;
}

.structures-table tbody tr:hover {
    background: #fef9f9;
}

.structures-table td.name {
    font-weight: 600;
    color: var(--red);
    white-space: nowrap;
}

.structures-table td.highlight {
    color: var(--red);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
}

/* ── DEEP DIVES ── */
.deepdives-section {
    padding: 90px 0;
}

.deepdive-grid {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.deepdive-row {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
}

.deepdive-cell {
    padding: 26px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .18s;
    cursor: pointer;
}

.deepdive-cell:last-child {
    border-right: none;
}

.deepdive-row:last-child .deepdive-cell {
    border-bottom: none;
}

.deepdive-cell:hover {
    background: #fef9f9;
}

.deepdive-cell:hover .deepdive-name {
    color: var(--red-dark);
}

.deepdive-name {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.deepdive-status {
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

@media (max-width: 640px) {
    .deepdive-row {
        grid-template-columns:1fr;
    }

    .deepdive-cell {
        border-right: none !important;
    }
}

/* সব লিঙ্কের নিচের দাগ বা টান ডিফল্টভাবে রিমুভ করার জন্য */
a {
    text-decoration: none !important;
}

/* মাউস হোভার করলেও যেন কোনো দাগ না আসে */
a:hover {
    text-decoration: darkred !important;
}

/* বুটস্ট্র্যাপের ডিফল্ট আইকন রিমুভ করে সূক্ষ্ম এবং ক্লিন ডাউন/আপ অ্যারো দেওয়া */
.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-size: 1rem;
}
.custom-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

