/* PROGRAMS PAGE — specific styles only */

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

/* ══════════  PAGE HERO  ══════════ */
        .page-hero {
            background: #081a0c;
            padding: 72px 40px 64px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: 10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(243,27,29,0.06);
            pointer-events: none;
        }

        .page-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            margin-bottom: 20px;
            letter-spacing: 0.04em;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover { color: rgba(255,255,255,0.9); }

        .breadcrumb .sep {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            flex-shrink: 0;
        }

        .breadcrumb .current { color: rgba(255,255,255,0.72); }

        .page-hero-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: 14px;
        }

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

        .page-hero-title {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 16px;
        }

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

        .page-hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.62);
            line-height: 1.75;
            max-width: 580px;
            font-weight: 300;
        }

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

        /* ══════════  SECTION COMMONS  ══════════ */
        .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;
        }

        /* ══════════  INTRO  ══════════ */
        .intro-sec {
            background: #fff;
            padding: 72px 40px 56px;
        }

        .intro-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        .intro-text p {
            font-size: 15.5px;
            color: #555;
            line-height: 1.85;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .intro-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-box {
            background: var(--off);
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid rgba(2,108,51,0.1);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .stat-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(2,108,51,0.1);
            background: #fff;
        }

        .stat-box:hover::before { transform: scaleX(1); }

        .stat-num {
            font-family: 'Tiro Bangla', serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--green);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-num .stat-accent { color: var(--red); }

        .stat-label {
            font-size: 12px;
            color: #888;
            font-weight: 600;
            letter-spacing: 0.04em;
            line-height: 1.4;
        }

        /* Inline illustration SVG */
        .stat-illus {
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
        }

        /* ══════════  CATEGORY: NEWCOMER  ══════════ */
        .cat-sec {
            padding: 80px 40px;
        }

        .cat-sec:nth-child(odd) { background: var(--off); }
        .cat-sec:nth-child(even) { background: #fff; }

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

        .cat-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 44px;
        }

        .cat-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: rgba(2,108,51,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1.5px solid rgba(2,108,51,0.15);
        }

        .cat-icon-wrap.red-cat {
            background: rgba(243,27,29,0.07);
            border-color: rgba(243,27,29,0.15);
        }

        .cat-header-text .cat-num {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 4px;
        }

        .cat-header-text h2 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 900;
            color: var(--green-dk);
            line-height: 1.2;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .cards-grid.two-col { grid-template-columns: repeat(2, 1fr); }
        .cards-grid.four-col { grid-template-columns: repeat(4, 1fr); }

        /* ══════════  SUPPORT CARD  ══════════ */
        .sup-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 26px 28px;
            border: 1px solid rgba(2,108,51,0.1);
            transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .cat-sec:nth-child(odd) .sup-card { background: #fff; }
        .cat-sec:nth-child(even) .sup-card { background: var(--off); }

        .sup-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--green), rgba(2,108,51,0.4));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        }

        .sup-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 56px rgba(2,108,51,0.14);
            border-color: rgba(2,108,51,0.18);
        }

        .cat-sec:nth-child(odd) .sup-card:hover { background: #fff; }
        .cat-sec:nth-child(even) .sup-card:hover { background: #fff; }

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

        .sup-card.red-card::before {
            background: linear-gradient(90deg, var(--red), rgba(243,27,29,0.4));
        }

        .sup-card:hover.red-card {
            box-shadow: 0 20px 56px rgba(243,27,29,0.12);
        }

        /* Illustration area */
        .card-illus {
            width: 100%;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
        }

        .illus-bg {
            position: absolute;
            inset: 0;
            border-radius: 14px;
            background: rgba(2,108,51,0.05);
            transition: background 0.3s;
        }

        .sup-card:hover .illus-bg { background: rgba(2,108,51,0.08); }
        .sup-card.red-card .illus-bg { background: rgba(243,27,29,0.04); }
        .sup-card.red-card:hover .illus-bg { background: rgba(243,27,29,0.07); }

        .card-illus svg {
            position: relative;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }

        .sup-card:hover .card-illus svg { transform: scale(1.1) translateY(-3px); }

        .card-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            background: rgba(2,108,51,0.1);
            color: var(--green);
            margin-bottom: 12px;
            align-self: flex-start;
        }

        .sup-card.red-card .card-tag {
            background: rgba(243,27,29,0.08);
            color: var(--red);
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--green-dk);
            margin-bottom: 10px;
            line-height: 1.35;
        }

        .card-desc {
            font-size: 13.5px;
            color: #666;
            line-height: 1.75;
            flex: 1;
        }

        .card-note {
            margin-top: 14px;
            padding: 10px 14px;
            background: rgba(243,27,29,0.05);
            border-left: 3px solid var(--red);
            border-radius: 0 8px 8px 0;
            font-size: 12px;
            color: #888;
            line-height: 1.5;
        }

        /* ══════════  COUNSELLING HIGHLIGHT  ══════════ */
        .highlight-banner {
            background: var(--green);
            border-radius: 24px;
            padding: 44px 48px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: center;
            margin-top: 24px;
            position: relative;
            overflow: hidden;
        }

        .highlight-banner::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;
        }

        .highlight-banner h3 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(18px,2vw,24px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .highlight-banner p {
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            max-width: 560px;
            font-weight: 300;
        }

        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--red);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 14px;
        }

        .banner-badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #fff;
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%,100% { opacity:1; transform:scale(1); }
            50% { opacity:0.4; transform:scale(1.6); }
        }

        .banner-illus {
            flex-shrink: 0;
            opacity: 0.9;
        }

        /* ══════════  COMMITMENT SECTION  ══════════ */
        .commitment-sec {
            background: #fff;
            padding: 80px 40px;
        }

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

        .commitment-header {
            text-align: center;
            margin-bottom: 52px;
        }

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

        .commit-card {
            border: 1.5px solid rgba(2,108,51,0.15);
            border-radius: 18px;
            padding: 30px 26px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .commit-card:hover {
            border-color: var(--green);
            box-shadow: 0 10px 32px rgba(2,108,51,0.1);
            transform: translateY(-4px);
        }

        .commit-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(2,108,51,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: background 0.3s;
        }

        .commit-card:hover .commit-icon { background: rgba(2,108,51,0.14); }

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

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

        /* ══════════  CTA SECTION  ══════════ */
        .cta-sec {
            background: var(--off);
            padding: 80px 40px;
        }

        .cta-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-inner h2 {
            font-family: 'Tiro Bangla', serif;
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 900;
            color: var(--green-dk);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-inner p {
            font-size: 15.5px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

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

        .btn-green {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--green);
            color: #fff;
            padding: 15px 32px;
            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);
        }

        .btn-red-out {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--red);
            padding: 15px 32px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 2px solid var(--red);
            transition: all 0.3s;
        }

        .btn-red-out:hover {
            background: var(--red);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(243,27,29,0.22);
        }
