/* MISSION & VISION PAGE */

@font-face {
            font-family: 'Abusayed';
            src: url('../fonts/Codepotro Abu Sayed.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

/* ══════════  HEADER  ══════════ */
        header {
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            padding: 14px 40px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 200;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-wrap img {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid rgba(2,108,51,0.2);
        }

        .logo-text .l1 {
            font-family: 'Tiro Bangla', serif;
            font-size: 15px;
            font-weight: 900;
            color: var(--green-dk);
            display: block;
            line-height: 1.2;
        }

        .logo-text .l2 {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #888;
            display: block;
        }

        /* ══════════  BREADCRUMB HERO  ══════════ */
        .page-hero {
            background: #fff;
            padding: 24px 32px 0;
        }

        .page-hero-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 460px;
            background: linear-gradient(135deg, var(--green-dk) 0%, #023d1e 40%, #011a0d 100%);
        }

        /* Decorative SVG background pattern */
        .page-hero-pattern {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .page-hero-pattern svg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(1,50,24,0.92) 0%, rgba(1,50,24,0.55) 60%, rgba(1,50,24,0.2) 100%);
        }

        .page-hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 72px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 22px;
        }

        .breadcrumb a {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover { color: #fff; }

        .breadcrumb .sep {
            color: rgba(255,255,255,0.25);
            font-size: 12px;
        }

        .breadcrumb .current {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--red);
        }

        .page-hero-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--red);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .page-hero-label::before {
            content: '';
            width: 32px;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            display: block;
        }

        .page-hero-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(36px, 5.5vw, 68px);
            font-weight: 900;
            color: #fff;
            line-height: 1.08;
            letter-spacing: -0.01em;
            text-shadow: 0 4px 32px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }

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

        .page-hero-sub {
            font-family: 'Abusayed', serif;
            font-size: clamp(16px, 2.2vw, 24px);
            color: rgba(255,255,255,0.65);
            margin-top: 6px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        /* Hero right illustration area */
        .page-hero-illo {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%);
            width: 280px;
            height: 280px;
            opacity: 0.18;
        }

        /* ══════════  DIVIDER  ══════════ */
        .strip {
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--red), var(--green));
            margin: 0 32px;
            border-radius: 2px;
        }

        /* ══════════  INTRO QUOTE  ══════════ */
        .intro-sec {
            background: #fff;
            padding: 64px 40px 44px;
            text-align: center;
        }

        .intro-quote {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(20px, 3vw, 34px);
            font-weight: 700;
            color: var(--green);
            line-height: 1.45;
            max-width: 820px;
            margin: 0 auto 36px;
        }

        .intro-quote .qm {
            color: var(--red);
            font-size: 1.3em;
            line-height: 0;
            vertical-align: -0.15em;
        }

        /* ══════════  MISSION & VISION CARDS  ══════════ */
        .mv-sec {
            background: #fff;
            padding: 0 40px 88px;
        }

        .mv-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .mv-card {
            background: var(--green);
            border-radius: 20px;
            padding: 52px 48px;
            position: relative;
            overflow: hidden;
            transition: all 0.35s;
        }

        .mv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 64px rgba(2,108,51,0.28);
        }

        /* Decorative circle */
        .mv-card::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            pointer-events: none;
        }

        .mv-card-dark {
            background: #081a0c;
        }

        .mv-badge {
            display: inline-block;
            background: var(--red);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 22px;
        }

        .mv-illo {
            display: block;
            margin-bottom: 20px;
        }

        .mv-card-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(22px, 2.4vw, 30px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.25;
        }

        .mv-card-text {
            color: rgba(255,255,255,0.78);
            font-size: 15.5px;
            line-height: 1.85;
            font-weight: 300;
        }

        /* ══════════  VALUES  ══════════ */
        .values-sec {
            background: var(--off);
            padding: 88px 40px;
        }

        .values-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .sec-label::before {
            content: '';
            width: 26px;
            height: 2.5px;
            background: var(--red);
            border-radius: 2px;
            display: block;
        }

        .sec-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.15;
        }

        .values-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .val-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 24px;
            text-align: center;
            border: 1px solid rgba(2,108,51,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .val-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .val-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(2,108,51,0.13);
        }

        .val-card:hover::before {
            transform: scaleX(1);
        }

        .val-illo {
            display: block;
            margin: 0 auto 16px;
        }

        .val-name {
            font-family: 'Tiro Bangla', serif;
            font-size: 16px;
            font-weight: 900;
            color: var(--green-dk);
            margin-bottom: 10px;
        }

        .val-desc {
            font-size: 13px;
            color: #777;
            line-height: 1.65;
        }

        /* ══════════  COMMITMENT  ══════════ */
        .commit-sec {
            background: #fff;
            padding: 88px 40px;
        }

        .commit-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .commit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        .commit-illo-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .commit-illo-bg {
            width: 100%;
            max-width: 460px;
            aspect-ratio: 1;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(2,108,51,0.07) 0%, rgba(2,108,51,0.03) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(2,108,51,0.1);
        }

        .commit-badge {
            position: absolute;
            top: 28px;
            right: -20px;
            background: var(--green);
            color: #fff;
            padding: 18px 20px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 8px 28px rgba(2,108,51,0.35);
            font-size: 12px;
            font-weight: 600;
        }

        .commit-badge .big {
            font-family: 'Tiro Bangla', serif;
            font-size: 34px;
            font-weight: 900;
            display: block;
            line-height: 1;
            margin-bottom: 3px;
        }

        .commit-stripe {
            position: absolute;
            bottom: 28px;
            left: -20px;
            background: var(--red);
            color: #fff;
            padding: 13px 18px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(243,27,29,0.35);
            max-width: 200px;
            line-height: 1.4;
        }

        .commit-text-wrap {}

        .commit-points {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .commit-point {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .commit-dot {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(2,108,51,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .commit-point-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--green-dk);
            margin-bottom: 4px;
        }

        .commit-point-text {
            font-size: 14px;
            color: #666;
            line-height: 1.65;
        }

        .about-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 18px;
            font-weight: 300;
        }

        .btn-green {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--green);
            color: #fff;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(2,108,51,0.22);
        }

        .btn-green:hover {
            background: #081a0c;
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(2,108,51,0.3);
        }

        /* ══════════  CTA BANNER  ══════════ */
        .cta-sec {
            background: #081a0c;
            padding: 72px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-sec::before {
            content: '';
            position: absolute;
            top: -80px;
            left: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            pointer-events: none;
        }

        .cta-sec::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            pointer-events: none;
        }

        .cta-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(243,27,29,0.85);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .cta-label::before,
        .cta-label::after {
            content: '';
            width: 26px;
            height: 2px;
            background: var(--red);
            border-radius: 2px;
        }

        .cta-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(26px, 3.5vw, 44px);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .cta-sub {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-red {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--red);
            color: #fff;
            padding: 16px 36px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            border: 2px solid var(--red);
            transition: all 0.3s;
            box-shadow: 0 8px 28px rgba(243,27,29,0.4);
        }

        .btn-red:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: rgba(255,255,255,0.85);
            padding: 16px 36px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: 2px solid rgba(255,255,255,0.25);
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
            color: #fff;
            transform: translateY(-3px);
        }
