
      body, html {
  overflow-x: hidden;
}
        html { scroll-behavior: smooth; }
.page-content, .page-content *:not(i) {
  font-family: Arial, sans-serif;
}
        /* ── Projects Page Tokens ── */
        :root {
            -proj-dark: #0f172a;
    --proj-accent: #334155;
    --proj-accent-light: rgba(51,65,85,0.10);
            --proj-rule: #e8e8e8;
            --proj-ink: #111111;
            --proj-ink-mid: #444444;
            --proj-ink-light: #888888;
            --proj-bg-alt: #f7f8fa;
        }

        /* ── Hero ── */
        .proj-hero {
            background: #0f172a;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .proj-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(14,165,233,0.08) 0%, transparent 60%),
                              radial-gradient(circle at 80% 20%, rgba(14,165,233,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .proj-hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }
        .proj-hero-eyebrow .line { width: 32px; height: 1px; background: #334155; }
        .proj-hero-eyebrow span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #0ea5e9;
        }
        .proj-hero h1 {
            font-size: clamp(36px,5vw,64px);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            font-family: Arial, sans-serif;
        }
        .proj-hero h1 em {
            font-style: italic;
            color: rgba(255,255,255,0.45);
        }
        .proj-hero-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            line-height: 1.9;
            max-width: 620px;
            margin-bottom: 16px;
        }
        .proj-hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .proj-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: rgba(255,255,255,0.55);
            padding: 13px 28px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.12);
            transition: border-color 0.2s, color 0.2s;
        }
        .proj-btn-outline:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

        /* Hero floating stat chips */
        .proj-hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 40px;
        }
        .proj-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 8px 16px;
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            font-weight: 500;
        }
.proj-chip i { color: #334155; font-size: 12px; }
        /* ── Section Eyebrow ── */
        .proj-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .proj-eyebrow .line { width: 32px; height: 1px; background: #334155; }
        .proj-eyebrow span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--proj-ink-light);
        }

        /* ── Impact Stats ── */
        .proj-stats-section {
            padding: 96px 0 80px;
            background: #ffffff;
            border-bottom: 1px solid var(--proj-rule);
        }
        .proj-stats-header { margin-bottom: 56px; }
        .proj-stats-header h2 {
            font-size: clamp(28px,3.5vw,42px);
            font-weight: 700;
            color: #0f172a;
            letter-spacing: -1px;
            margin-bottom: 12px;
            line-height: 1.15;
        }
        .proj-stats-header p {
            font-size: 15px;
            color: var(--proj-ink-mid);
            max-width: 560px;
            line-height: 1.75;
            margin: 0;
        }
        .proj-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .proj-stat-card {
            background: var(--proj-bg-alt);
            border: 1px solid var(--proj-rule);
            border-radius: 12px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .proj-stat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0ea5e9, #38bdf8);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .proj-stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(14,165,233,0.12); border-color: #0ea5e9; }
        .proj-stat-card:hover::before { opacity: 1; }
        .proj-stat-icon {
            width: 48px;
            height: 48px;
            background: rgba(14,165,233,0.10);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0ea5e9;
            font-size: 20px;
            margin-bottom: 20px;
            transition: background 0.25s, transform 0.25s;
        }
        .proj-stat-card:hover .proj-stat-icon { background: #0ea5e9; color: #fff; transform: scale(1.1) rotate(-8deg); }
        .proj-stat-number {
            font-size: 38px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1;
            letter-spacing: -1.5px;
            margin-bottom: 8px;
        }
        .proj-stat-number span { color: #0ea5e9; }
        .proj-stat-label {
            font-size: 14px;
            color: var(--proj-ink-mid);
            line-height: 1.5;
            font-weight: 500;
        }

        /* ── Corporate Deck Banner ── */
        .proj-deck-section {
            padding: 0 0 72px;
            background: #ffffff;
        }
        .proj-deck-banner {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            padding: 48px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }
        .proj-deck-banner::before {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .proj-deck-text { position: relative; z-index: 1; }
        .proj-deck-text .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(14,165,233,0.15);
            border: 1px solid rgba(14,165,233,0.3);
            border-radius: 50px;
            padding: 5px 14px;
            color: #38bdf8;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .proj-deck-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .proj-deck-text p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin: 0;
            line-height: 1.7;
        }
        .proj-deck-actions { flex-shrink: 0; position: relative; z-index: 1; }
        .proj-deck-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0ea5e9;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            white-space: nowrap;
        }
        .proj-deck-btn:hover { background: #0284c7; transform: translateY(-2px); color: #fff; }

        /* ── Projects Grid ── */
        .proj-projects-section {
            padding: 96px 0;
            background: var(--proj-bg-alt);
            border-top: 1px solid var(--proj-rule);
            border-bottom: 1px solid var(--proj-rule);
        }
        .proj-section-header { margin-bottom: 56px; }
        .proj-section-header h2 {
            font-size: clamp(28px,3.5vw,42px);
            font-weight: 700;
            color: #0f172a;
            letter-spacing: -1px;
            margin-bottom: 12px;
            line-height: 1.15;
        }
        .proj-section-header p {
            font-size: 15px;
            color: var(--proj-ink-mid);
            max-width: 560px;
            line-height: 1.75;
            margin: 0;
        }
        .proj-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .proj-card {
            background: #ffffff;
            border: 1px solid var(--proj-rule);
            border-radius: 14px;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .proj-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.10); border-color: #0ea5e9; }
        .proj-card-accent {
            height: 4px;
            background: linear-gradient(90deg, var(--card-color, #0ea5e9), rgba(14,165,233,0.3));
        }
        .proj-card-body { padding: 32px 32px 28px; }
        .proj-card-head {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }
        .proj-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            background: var(--proj-blue-light);
            color: #0ea5e9;
            transition: background 0.25s, transform 0.25s;
        }
        .proj-card:hover .proj-card-icon { background: #0ea5e9; color: #fff; transform: scale(1.1) rotate(-6deg); }
        .proj-card-meta { flex: 1; min-width: 0; }
        .proj-card-partner {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(14,165,233,0.08);
            border: 1px solid rgba(14,165,233,0.2);
            color: #0284c7;
            border-radius: 4px;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .proj-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
            margin: 0;
        }
        .proj-card-desc {
            font-size: 13.5px;
            color: var(--proj-ink-mid);
            line-height: 1.75;
            margin-bottom: 20px;
        }
        .proj-card-divider {
            height: 1px;
            background: var(--proj-rule);
            margin-bottom: 20px;
        }
        .proj-card-list-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--proj-ink-light);
            margin-bottom: 12px;
        }
        .proj-card-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .proj-card-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--proj-ink-mid);
            line-height: 1.5;
        }
        .proj-card-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #0ea5e9;
            flex-shrink: 0;
            margin-top: 5px;
        }

        /* CDSL card – full width */
        .proj-card-wide { grid-column: 1 / -1; }
        .proj-card-wide .proj-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .proj-card-wide .proj-card-desc { margin-bottom: 0; }

        /* Sub-program blocks inside wide card */
        .proj-sub-programs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            grid-column: 1 / -1;
            margin-top: 24px;
        }
        .proj-sub-block {
            background: var(--proj-bg-alt);
            border: 1px solid var(--proj-rule);
            border-radius: 10px;
            padding: 24px;
        }
        .proj-sub-block-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 14px;
        }
        .proj-sub-block-title i {
            width: 30px;
            height: 30px;
            background: rgba(14,165,233,0.10);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0ea5e9;
            font-size: 13px;
        }

        /* ── Closing CTA ── */
        .proj-cta-section {
            padding: 96px 0;
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }
        .proj-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 10% 60%, rgba(14,165,233,0.07) 0%, transparent 55%),
                              radial-gradient(circle at 90% 30%, rgba(14,165,233,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .proj-cta-inner {
            position: relative;
            z-index: 1;
            max-width: 780px;
        }
        .proj-cta-inner h2 {
            font-size: clamp(28px,3.5vw,44px);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -1px;
            margin-bottom: 20px;
            line-height: 1.15;
        }
        .proj-cta-inner h2 em { font-style: italic; color: rgba(255,255,255,0.4); }
        .proj-cta-inner p {
            font-size: 15px;
            color: rgba(255,255,255,0.48);
            line-height: 1.85;
            margin-bottom: 0;
        }
        .proj-cta-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .proj-cta-pillar {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 28px;
        }
        .proj-cta-pillar i {
            font-size: 20px;
            color: #0ea5e9;
            margin-bottom: 14px;
            display: block;
        }
        .proj-cta-pillar h4 {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .proj-cta-pillar p {
            font-size: 13px;
            color: rgba(255,255,255,0.38);
            line-height: 1.65;
            margin: 0;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .proj-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .proj-card-wide .proj-card-body { grid-template-columns: 1fr; gap: 20px; }
            .proj-deck-banner { padding: 40px 36px; }
        }
        @media (max-width: 768px) {
            .proj-hero { padding: 90px 0 72px; }
            .proj-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .proj-grid { grid-template-columns: 1fr; }
            .proj-card-wide { grid-column: auto; }
            .proj-card-wide .proj-card-body { grid-template-columns: 1fr; }
            .proj-sub-programs { grid-template-columns: 1fr; }
            .proj-cta-pillars { grid-template-columns: 1fr; gap: 16px; }
            .proj-deck-banner { flex-direction: column; padding: 36px 28px; text-align: left; }
            .proj-deck-actions { width: 100%; }
            .proj-deck-btn { width: 100%; justify-content: center; }
        }
        @media (max-width: 480px) {
            .proj-stats-grid { grid-template-columns: 1fr; }
            .proj-hero-btns { flex-direction: column; }
            .proj-btn-primary, .proj-btn-outline { justify-content: center; }
            .proj-stat-number { font-size: 30px; }
            .proj-card-body { padding: 24px 20px 20px; }
        }
        .page-content, .page-content *:not(i) { 
    font-family: Arial, sans-serif !important; 
}

      body, html {
  overflow-x: hidden;
}
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: "Arial", sans-serif; color: var(--primary); background: var(--gray-50); }
        .hero { background: linear-gradient(135deg, var(--primary) 0%, #1a3a52 100%); color: var(--white); padding: 100px 24px 80px; position: relative; overflow: hidden; }
        .hero::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .hero-content { max-width: 1400px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
        .hero h1 { font-family: "Arial", sans-serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; color: #ffffff; }
        .hero p { font-size: 1.1rem; color: #ffffff; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
        .search-container { max-width: 600px; margin: 0 auto; display: flex; gap: 12px; }
        .search-input { flex: 1; padding: 14px 20px; border: none; border-radius: 8px; font-size: 14px; background: rgba(255, 255, 255, 0.95); }
        .search-btn { padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .search-btn:hover { background: var(--accent-dark); }
        .filters-section { background: var(--white); padding: 40px 24px; border-bottom: 1px solid #e5e7eb; }
        .filters-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .filter-btn { padding: 10px 24px; border: 1.5px solid #e5e7eb; background: var(--white); color: #4b5563; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s ease; }
        .filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(14, 165, 233, 0.05); }
        .main-content { max-width: 1400px; margin: 0 auto; padding: 60px 24px; }
        .featured-article { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; transition: all 0.3s ease; }
        .featured-article:hover { box-shadow: 0 20px 48px rgba(14, 165, 233, 0.15); }
        .featured-image { height: 450px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255, 255, 255, 0.15); position: relative; overflow: hidden; }
        .featured-image::before { content: ""; position: absolute; top: -50%; right: -50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); border-radius: 50%; }
        .featured-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .featured-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; width: fit-content; margin-bottom: 20px; border-left: 3px solid var(--accent); }
        .featured-title { font-family: "Arial", sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; line-height: 1.3; }
        .featured-meta { display: flex; gap: 24px; margin-bottom: 24px; font-size: 14px; color: #6b7280; }      
        .featured-excerpt { font-size: 1.05rem; color: #4b5563; line-height: 1.8; margin-bottom: 30px; }
        .read-more-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; width: fit-content; transition: all 0.3s ease; }
        .read-more-btn:hover { background: var(--accent-dark); transform: translateX(4px); gap: 16px; }
        .gallery-section { margin-top: 80px; margin-bottom: 80px; }
        .section-header { margin-bottom: 50px; }
        .section-title { font-family: "Arial", sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
        .section-subtitle { font-size: 0.95rem; color: #4b5563; line-height: 1.5; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
        .gallery-item { position: relative; height: 280px; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); border: 1px solid rgba(14, 165, 233, 0.2); }
        .gallery-item:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15); }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent); padding: 24px; transform: translateY(50px); opacity: 0; transition: all 0.3s ease; }
        .gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
        .gallery-title { font-weight: 700; color: var(--white); font-size: 14px; margin-bottom: 6px; }
        .gallery-date { font-size: 12px; color: var(--accent-light); font-weight: 500; }
        .news-section { margin: 80px 0; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
        .news-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #e5e7eb; }
        .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15); }
        .news-image { height: 200px; background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #d1d5db; }
        .news-content { padding: 24px; }
        .news-category { display: inline-block; background: rgba(14, 165, 233, 0.1); color: var(--accent); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
        .news-title { font-family: "Arial", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.4; }
        .news-excerpt { font-size: 0.95rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; }
        .news-meta { display: flex; gap: 16px; font-size: 12px; color: #9ca3af; }
        /* ===== MEDIA COVERAGE STYLES ===== */
        .media-coverage-section { margin: 0; padding: 12px 24px 20px; background: transparent; border-top: none; border-bottom: none; }
        .media-coverage-header { margin-bottom: 12px; text-align: center; }
        .media-coverage-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; border-left: 3px solid var(--accent); }
        .media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .media-channel { background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%); border-radius: 14px; padding: 24px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(14, 165, 233, 0.1); border: 1px solid #e5e7eb; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: space-between; position: relative; overflow: hidden; min-height: 320px; }
        .media-channel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.3); background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%); }
        .media-channel:hover::before { opacity: 1; }
        .media-logo { width: 120px; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); border-radius: 10px; overflow: hidden; border: 1px solid rgba(14, 165, 233, 0.1); transition: all 0.3s ease; position: relative; }
        .media-logo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.05), transparent 70%); opacity: 0; transition: opacity 0.3s ease; }
        .media-channel:hover .media-logo { background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); border-color: var(--accent); }
        .media-channel:hover .media-logo::after { opacity: 1; }
        .media-logo img { max-width: 95%; max-height: 95%; object-fit: contain; position: relative; z-index: 1; }
        .media-name { font-family: "Arial", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; transition: color 0.3s ease; letter-spacing: 0.3px; }
        .media-channel:hover .media-name { color: var(--accent); }
        .media-description { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; transition: color 0.3s ease; flex: 1; }
        .media-channel:hover .media-description { color: #4b5563; }
        .media-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); border: 1.5px solid rgba(14, 165, 233, 0.2); border-radius: 8px; font-weight: 600; font-size: 12px; cursor: pointer; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
        .media-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent-dark); box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3); transform: translateX(2px); }
        .media-link i { transition: transform 0.3s ease; }
        .media-link:hover i { transform: translateX(3px); }
        .trust-indicators { display: flex; gap: 16px; justify-content: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid #e5e7eb; flex-wrap: wrap; }
        .trust-item { display: flex; align-items: center; gap: 12px; }
        .trust-icon { width: 40px; height: 40px; background: rgba(14, 165, 233, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; }
        /* ===== NEWS SECTION STYLES ===== */
        .news-featured-section { margin-top: 20px; padding: 40px 24px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%); border-radius: 0; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
        .news-header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .news-header-content h3 { font-family: "Arial", sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
        .news-header-content p { font-size: 0.9rem; color: #6b7280; }
        .news-category-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
        .news-tab-btn { padding: 8px 14px; background: var(--white); border: 1.5px solid #e5e7eb; color: #4b5563; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .news-tab-btn:hover, .news-tab-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
        .news-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .news-item-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; transition: all 0.3s ease; display: flex; flex-direction: column; }
        .news-item-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.2); }
        .news-item-image { width: 100%; height: 160px; background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #9ca3af; overflow: hidden; position: relative; }
        .news-item-image img { width: 100%; height: 100%; object-fit: cover; }
        .news-item-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.1)); }
        .news-item-content { padding: 18px; display: flex; flex-direction: column; flex: 1; }
        .news-item-meta { display: flex; gap: 12px; margin-bottom: 10px; font-size: 11px; color: #9ca3af; align-items: center; }
        .news-item-badge { display: inline-block; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%); color: var(--accent); padding: 6px 10px; border-radius: 6px; font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; }
        .news-item-title { font-family: "Arial", sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; transition: color 0.3s ease; }
        .news-item-card:hover .news-item-title { color: var(--accent); }
        .news-item-excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.5; flex: 1; margin-bottom: 12px; }
        .news-item-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e5e7eb; }
        .news-item-date { font-size: 11px; color: #9ca3af; display: flex; align-items: center; gap: 6px; }
        .news-item-read { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(14, 165, 233, 0.1); color: var(--accent); border: none; border-radius: 6px; font-weight: 600; font-size: 11px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
        .news-item-read:hover { background: var(--accent); color: var(--white); }
        @media (max-width: 768px) { .news-header { flex-direction: column; align-items: flex-start; } .news-items-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; } .news-item-image { height: 140px; } }
        @media (max-width: 480px) { .news-items-grid { grid-template-columns: 1fr; } .news-header-content h3 { font-size: 1.3rem; } }
        /* CALENDAR SECTION */

.calendar-section{
padding:80px 24px;
background:#f9fafb;
}

.calendar-container{
max-width:1200px;
margin:auto;
}

.calendar-header{
text-align:center;
margin-bottom:50px;
}

.calendar-header h2{
font-weight:700;
color:var(--primary);
}

.calendar-tabs{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
}

.calendar-tab{
background:white;
border-radius:14px;
padding:30px;
border:1px solid #e5e7eb;
text-decoration:none;
transition:.3s;
}

.calendar-tab:hover{
transform:translateY(-6px);
box-shadow:0 12px 28px rgba(14,165,233,.15);
border-color:var(--accent);
}

.calendar-icon{
width:55px;
height:55px;
background:rgba(14,165,233,.1);
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:var(--accent);
margin-bottom:15px;
}

.calendar-link{
font-size:13px;
font-weight:600;
color:var(--accent);
}

        /* ===== COURSES PAGE (responsive, page-scoped) ===== */
        .courses-hero {
          background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
          padding: clamp(28px, 4.2vw, 56px) clamp(16px, 4vw, 40px);
          box-shadow: 0 4px 6px rgba(0,0,0,0.07);
          position: relative;
          overflow: hidden;
          isolation: isolate;
        }
        .courses-hero::after{
          content:"";
          position:absolute;
          top: 0;
          right: -100px;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
          border-radius: 50%;
          z-index: 0;
          pointer-events:none;
        }
        .courses-hero-inner{ position: relative; z-index: 1; }
        .courses-hero-title{
          font-size: clamp(24px, 3.2vw, 40px);
          font-weight: 700;
          color: #ffffff;
          margin: 0 0 10px 0;
          line-height: 1.15;
          letter-spacing: -0.02em;
          font-family: Arial, sans-serif;
        }
        .courses-hero-subtitle{
          font-size: clamp(13px, 1.35vw, 16px);
          color: #cbd5e1;
          margin: 0;
          line-height: 1.5;
          font-family: Arial, sans-serif;
          max-width: 72ch;
        }

        .courses-filterbar{
          position: sticky;
          top: 0;
          background: #ffffff;
          border-bottom: 1px solid #e2e8f0;
          box-shadow: 0 2px 8px rgba(0,0,0,0.06);
          padding: 14px clamp(16px, 4vw, 40px);
          max-width: 100%;
          z-index: 99;
        }
        .courses-filterbar-inner{
          display:flex;
          align-items:center;
          gap: 12px;
          flex-wrap: wrap;
        }
        .courses-filter-row{
          display:flex;
          align-items:center;
          gap: 12px;
          flex: 1 1 520px;
          min-width: 0;
          flex-wrap: wrap;
        }
        .courses-filter-field{
          flex: 1 1 180px;
          min-width: 160px;
          max-width: 260px;
        }
        .courses-filter-select{
          width: 100%;
          padding: 10px 12px;
          border: 1px solid #e2e8f0;
          border-radius: 8px;
          font-size: 13px;
          font-family: Arial, sans-serif;
          cursor: pointer;
          background: #ffffff;
          transition: border-color 0.2s ease, box-shadow 0.2s ease;
          outline: none;
        }
        .courses-filter-select:focus{
          border-color: #0ea5e9;
          box-shadow: 0 0 0 3px rgba(14,165,233,0.18);
        }
        .courses-clear-btn{
          padding: 10px 14px;
          background: #f0f7ff;
          border: 1.5px solid #0ea5e9;
          border-radius: 10px;
          font-size: 13px;
          font-weight: 700;
          color: #0ea5e9;
          cursor: pointer;
          transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
          font-family: Arial, sans-serif;
          white-space: nowrap;
          flex: 0 0 auto;
        }
        .courses-clear-btn:hover{
          background: #0ea5e9;
          color: #ffffff;
          border-color: #0ea5e9;
        }

        .courses-body{
          padding: clamp(16px, 3.2vw, 40px);
          max-width: 1800px;
          margin: 0 auto;
          position: relative;
        }
        .courses-grid{
          display:grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 24px;
        }

        .course-card{
          background: #ffffff;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 4px 12px rgba(0,0,0,0.08);
          border: 1px solid #e2e8f0;
          transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
          display:flex;
          flex-direction: column;
          cursor: pointer;
          min-width: 0;
        }
        .course-card:hover{
          box-shadow: 0 20px 40px rgba(0,0,0,0.15);
          transform: translateY(-8px);
          border-color: rgba(14,165,233,0.9);
        }

        .course-card-logo{
          height: 120px;
          padding: 16px;
          display:flex;
          align-items:center;
          justify-content:center;
          background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        }
        .course-card-logo img{ max-width: 90%; max-height: 90%; object-fit: contain; }

        .course-card-content{
          padding: 22px;
          flex: 1 1 auto;
          display:flex;
          flex-direction: column;
          min-width: 0;
        }
        .course-badge{
          display:inline-block;
          background: #ef4444;
          color: #ffffff;
          padding: 5px 12px;
          border-radius: 8px;
          font-size: 11px;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          font-family: Arial, sans-serif;
          max-width: 100%;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
        .course-title{
          font-size: 18px;
          font-weight: 800;
          color: #0f172a;
          margin: 14px 0 16px 0;
          line-height: 1.25;
          font-family: Arial, sans-serif;
          overflow-wrap: anywhere;
        }
        .course-cert{
          margin-bottom: 16px;
          padding-bottom: 16px;
          border-bottom: 1px solid #e2e8f0;
          display:flex;
          align-items:center;
          gap: 12px;
          min-width: 0;
        }
        .course-cert-logo{
          width: 48px;
          height: 48px;
          border-radius: 10px;
          object-fit: contain;
          padding: 6px;
          background: #f0f7ff;
          flex: 0 0 auto;
        }
        .course-cert-meta{ min-width: 0; }
        .course-cert-kicker{
          font-size: 11px;
          color: #10b981;
          text-transform: uppercase;
          font-weight: 800;
          letter-spacing: 0.4px;
          font-family: Arial, sans-serif;
          margin-bottom: 4px;
          display:flex;
          align-items:center;
          gap: 6px;
        }
        .course-cert-name{
          font-size: 13px;
          font-weight: 700;
          color: #0f172a;
          font-family: Arial, sans-serif;
          overflow-wrap: anywhere;
        }

        .course-metrics{
          display:grid;
          grid-template-columns: 1fr 1fr;
          gap: 12px;
          margin-bottom: 16px;
          padding-bottom: 16px;
          border-bottom: 1px solid #e2e8f0;
        }
        .course-metric-label{
          font-size: 10px;
          color: #64748b;
          text-transform: uppercase;
          font-weight: 800;
          letter-spacing: 0.3px;
          margin-bottom: 4px;
        }
        .course-metric-value{
          font-size: 14px;
          font-weight: 800;
          color: #0f172a;
          display:flex;
          align-items:center;
          gap: 6px;
          min-width: 0;
        }
        .course-lang{
          margin-bottom: 16px;
        }
        .course-desc{
          font-size: 13px;
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 18px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          font-family: Arial, sans-serif;
        }
        .course-actions{
          display:flex;
          gap: 10px;
          margin-top: auto;
        }
        .course-btn{
          flex: 1 1 0;
          padding: 12px 14px;
          border-radius: 10px;
          font-size: 13px;
          font-weight: 800;
          cursor: pointer;
          transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
          font-family: Arial, sans-serif;
          min-width: 0;
          white-space: nowrap;
        }
        .course-btn-primary{
          background: #ef4444;
          color: #ffffff;
          border: none;
        }
        .course-btn-primary:hover{ background: #dc2626; }
        .course-btn-secondary{
          background: #f0f7ff;
          color: #0ea5e9;
          border: 2px solid #0ea5e9;
        }
        .course-btn-secondary:hover{ background: #e0f2fe; }

        .course-application-form {
          padding: 20px;
        }

        .course-application-form input:focus,
        .course-application-form select:focus,
        .course-application-form textarea:focus {
          border-color: #0ea5e9;
          outline: none;
          box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
        }

        .course-modal-backdrop{
          position: fixed;
          inset: 0;
          background: rgba(0,0,0,0.6);
          z-index: 1000;
          display:flex;
          align-items:center;
          justify-content:center;
          padding: 16px;
        }
        .course-modal{
          background: #ffffff;
          border-radius: 14px;
          max-width: 900px;
          width: 100%;
          max-height: min(90vh, 860px);
          overflow: hidden;
          box-shadow: 0 20px 50px rgba(0,0,0,0.2);
          animation: slideUp 0.28s ease;
          display:flex;
          flex-direction: column;
        }
        .course-modal-scroll{ overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .course-modal-header{
          padding: 22px;
          background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
          color: #ffffff;
          display:flex;
          justify-content: space-between;
          align-items: flex-start;
          gap: 14px;
          border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .course-modal-header-left{
          flex: 1 1 auto;
          display:flex;
          align-items: center;
          gap: 16px;
          min-width: 0;
        }
        .course-modal-logo{
          width: 88px;
          height: 88px;
          border-radius: 16px;
          object-fit: contain;
          padding: 12px;
          background: rgba(255,255,255,0.1);
          backdrop-filter: blur(10px);
          flex: 0 0 auto;
        }
        .course-modal-title{
          font-size: 22px;
          font-weight: 800;
          font-family: Arial, sans-serif;
          margin: 0;
          line-height: 1.2;
          overflow-wrap: anywhere;
        }
        .course-modal-close{
          background: none;
          border: none;
          color: #ffffff;
          font-size: 22px;
          cursor: pointer;
          padding: 0;
          width: 34px;
          height: 34px;
          display:flex;
          align-items:center;
          justify-content:center;
          border-radius: 10px;
          transition: background 0.15s ease;
          flex: 0 0 auto;
        }
        .course-modal-close:hover{ background: rgba(255,255,255,0.12); }
        .course-modal-body{ padding: 22px; }
        .course-modal-footer{
          padding: 14px 22px;
          background: #f8fafc;
          border-top: 1px solid #e2e8f0;
          display:flex;
          gap: 12px;
          flex-wrap: wrap;
        }
        .course-modal-footer .course-btn{ flex: 1 1 220px; }

        @keyframes slideUp{
          from{ transform: translateY(14px); opacity: 0; }
          to{ transform: translateY(0); opacity: 1; }
        }

        @media (max-width: 768px){
          .courses-filter-field{ flex: 1 1 48%; min-width: 150px; max-width: none; }
          .courses-grid{ grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
          .course-card-content{ padding: 18px; }
          .course-actions{ flex-direction: column; }
          .course-btn{ white-space: normal; }
          .course-metrics{ grid-template-columns: 1fr; }
          .course-modal-header-left{ align-items: flex-start; }
          .course-modal-logo{ width: 72px; height: 72px; border-radius: 14px; }
        }
        @media (max-width: 480px){
          .courses-filterbar-inner{ gap: 10px; }
          .courses-filter-row{ flex: 1 1 100%; }
          .courses-filter-field{ flex: 1 1 100%; min-width: 0; }
          .courses-clear-btn{ width: 100%; }
          .courses-grid{ grid-template-columns: 1fr; }
          .course-modal-header{ flex-direction: column; }
          .course-modal-header-left{ width: 100%; }
        }
        
      * { box-sizing: border-box; margin: 0; padding: 0; }
      body { background: #f8fafc; font-family: 'Inter', sans-serif; color: #1e293b; }
      .careers-wrapper { min-height: 100vh; }
      /* Hero Section */
      .careers-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        padding: 48px 60px;
        border-bottom: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 10px 20px rgba(14, 165, 233, 0.08);
        position: relative;
        overflow: hidden;
      }
      .careers-hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
        border-radius: 50%;
      }
      .careers-hero h1 {
        font-size: 36px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
        letter-spacing: -0.5px;
      }
      .careers-hero p {
        font-size: 16px;
        color: #cbd5e1;
        margin: 0;
        position: relative;
        z-index: 1;
        font-weight: 400;
      }
        
        /* Main Container */
        .careers-main {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 24px;
            padding: 32px 60px;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        /* Sidebar */
        .careers-sidebar { position: sticky; top: 32px; height: fit-content; }
        .filter-card { 
            background: #ffffff; 
            border-radius: 12px; 
            padding: 20px; 
            margin-bottom: 16px; 
            box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .filter-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .filter-title { font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 16px; text-transform: uppercase; display: block; letter-spacing: 0.6px; }
        .filter-group { margin-bottom: 14px; }
        .filter-input, .filter-select { 
            width: 100%; 
            padding: 10px 12px; 
            border: 1px solid #e2e8f0; 
            border-radius: 8px; 
            font-size: 13px; 
            font-family: 'Inter', sans-serif;
            background: #f8fafc;
            transition: all 0.2s ease;
            color: #1e293b;
        }
        .filter-input:focus, .filter-select:focus { 
            outline: none; 
            border-color: #0ea5e9; 
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1); 
        }
        .clear-btn { 
            width: 100%; 
            padding: 11px 12px; 
            background: #ffffff; 
            border: 1.5px solid #e2e8f0; 
            border-radius: 8px; 
            font-size: 13px; 
            font-weight: 600; 
            color: #0f172a; 
            cursor: pointer; 
            transition: all 0.2s ease;
        }
        .clear-btn:hover { 
            background: #f0f7ff;
            border-color: #0ea5e9; 
            color: #0ea5e9;
        }
        
        /* Jobs Container */
        .jobs-container { 
            background: #ffffff; 
            border-radius: 12px; 
            box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        .jobs-header { 
            padding: 20px 24px; 
            border-bottom: 1px solid #e2e8f0; 
            font-size: 14px; 
            color: #64748b; 
            font-weight: 600;
            background: #f8fafc;
        }
        .jobs-list { display: flex; flex-direction: column; }
        
        /* Job Card */
        .job-card { 
            padding: 24px; 
            border-bottom: 1px solid #e2e8f0; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            display: flex; 
            gap: 16px;
            position: relative;
        }
        .job-card:last-child { border-bottom: none; }
        .job-card:hover { 
            background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
            box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.1);
        }
        
        .job-icon { 
            width: 48px; 
            height: 48px; 
            background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%); 
            border-radius: 10px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 20px; 
            color: #0ea5e9; 
            flex-shrink: 0;
            border: 1px solid #bae6fd;
            transition: all 0.3s ease;
        }
        .job-card:hover .job-icon {
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            color: #ffffff;
            border-color: #0ea5e9;
            transform: scale(1.05);
        }
        
        .job-content { flex: 1; }
        .job-title { 
            font-size: 16px; 
            font-weight: 700; 
            color: #0f172a; 
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .job-company { 
            font-size: 13px; 
            color: #475569; 
            margin-bottom: 10px;
            font-weight: 500;
        }
        .job-details { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 18px; 
            font-size: 12px; 
            color: #64748b; 
            margin-bottom: 10px;
            align-items: center;
        }
        .job-location::before { content: '📍 '; margin-right: 2px; }
        .job-salary { 
            color: #10b981; 
            font-weight: 600;
            background: #f0fdf4;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .job-salary::before { content: '₹ '; }
        .job-category {
            display: inline-block;
            background: #f0f7ff;
            color: #0ea5e9;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-left: auto;
        }
        .job-description { 
            font-size: 13px; 
            color: #64748b; 
            margin-bottom: 10px; 
            line-height: 1.5;
        }
        .job-skills { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 8px; 
            margin-bottom: 12px;
        }
        .job-skill { 
            background: #f1f5f9; 
            color: #0f172a; 
            padding: 5px 10px; 
            border-radius: 6px; 
            font-size: 11px; 
            font-weight: 500;
            border: 1px solid #cbd5e1;
            transition: all 0.2s ease;
        }
        .job-skill:hover {
            background: #e0f2fe;
            color: #0ea5e9;
            border-color: #0ea5e9;
        }
        .job-actions { 
            display: flex; 
            gap: 10px; 
            margin-top: 12px;
        }
        .btn-view { 
            padding: 8px 14px; 
            background: #ffffff; 
            border: 1.5px solid #e2e8f0; 
            border-radius: 6px; 
            font-size: 12px; 
            font-weight: 600; 
            color: #475569; 
            cursor: pointer; 
            transition: all 0.2s ease;
        }
        .btn-view:hover { 
            border-color: #0ea5e9; 
            color: #0ea5e9;
            background: #f0f7ff;
        }
        .btn-apply { 
            padding: 8px 18px; 
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            color: #ffffff; 
            border: none; 
            border-radius: 6px; 
            font-size: 12px; 
            font-weight: 700; 
            cursor: pointer; 
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
        }
        .btn-apply:hover { 
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
        }
        
        .empty-state { text-align: center; padding: 80px 20px; }
        .empty-icon { font-size: 56px; margin-bottom: 20px; }
        .empty-text { color: #64748b; font-size: 15px; font-weight: 500; }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            overflow-y: auto;
        }
        .modal-content {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease-out;
            position: relative;
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #64748b;
            transition: all 0.2s ease;
            z-index: 1001;
        }
        .modal-close:hover {
            background: #e2e8f0;
            color: #0f172a;
        }
        .modal-header {
            padding: 40px 32px 20px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
        }
        .modal-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }
        .modal-company {
            font-size: 14px;
            color: #64748b;
            margin: 0;
        }
        .modal-department {
            display: inline-block;
            background: #f0f7ff;
            color: #0ea5e9;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .modal-body {
            padding: 32px;
        }
        .modal-section {
            margin-bottom: 32px;
        }
        .modal-section:last-child {
            margin-bottom: 0;
        }
        .modal-section h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .modal-section p {
            font-size: 14px;
            line-height: 1.6;
            color: #475569;
            margin: 0;
        }
        .modal-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .detail-item {
            background: #f8fafc;
            padding: 16px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        .detail-label {
            display: block;
            font-size: 12px;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-bottom: 8px;
        }
        .detail-value {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #0f172a;
        }
        .detail-value i {
            color: #0ea5e9;
        }
        .modal-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .modal-skill {
            background: #f0f7ff;
            color: #0ea5e9;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid #bae6fd;
            transition: all 0.2s ease;
        }
        .modal-skill:hover {
            background: #0ea5e9;
            color: #ffffff;
        }
        .modal-actions {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #e2e8f0;
        }
        .modal-apply-btn {
            flex: 1;
            padding: 12px 24px;
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .modal-apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
        }
        .modal-close-btn {
            flex: 1;
            padding: 12px 24px;
            background: #f8fafc;
            border: 1.5px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .modal-close-btn:hover {
            background: #e2e8f0;
            border-color: #cbd5e1;
        }
        
        @media (max-width: 600px) {
            .modal-details-grid {
                grid-template-columns: 1fr;
            }
            .modal-header {
                flex-direction: column;
            }
            .modal-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 1024px) { 
            .careers-main { 
                grid-template-columns: 1fr; 
                padding: 24px;
            } 
            .careers-sidebar { position: static; } 
            .careers-hero { padding: 36px 24px; }
            .careers-hero h1 { font-size: 28px; }
        }
        @media (max-width: 768px) { 
            .careers-hero { 
                padding: 28px 16px;
            } 
            .careers-hero h1 { 
                font-size: 24px;
            }
            .careers-main { 
                gap: 0;
                padding: 16px;
            }
            .job-card {
                flex-direction: column;
            }
            .job-category {
                margin-left: 0;
            }
        }
    
        * { box-sizing: border-box; }
        
        body { 
            background: #fafbfc;
            color: #1f2937;
        }

        /* Hero Section - Minimalist */
        .apprentice-hero {
            background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
            color: #1f2937;
            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #e5e7eb;
        }

        .apprentice-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .apprentice-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .apprentice-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .apprentice-hero h1 {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.25;
            background: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .apprentice-hero p {
            font-size: 18px;
            opacity: 0.7;
            margin-bottom: 0;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        /* Modal Overlay - Minimalist */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(4px);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: #fff;
            border-radius: 24px;
            max-width: 900px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            animation: slideUp 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 40px;
            background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
            color: #1f2937;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e5e7eb;
            border-radius: 24px 24px 0 0;
        }

        .modal-title {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .modal-title h2 {
            margin: 0;
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-title p {
            margin: 0;
            font-size: 13px;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .modal-close {
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            color: #6b7280;
            font-size: 20px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .modal-close:hover {
            background: #e5e7eb;
            color: #1f2937;
        }

        .modal-body {
            padding: 40px;
            background: #ffffff;
        }

        .modal-body .status-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 40px;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .modal-body .status-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .modal-body .status-tabs::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body .status-tabs::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 2px;
        }

        .modal-body .tab-button {
            padding: 14px 24px;
            border: none;
            background: transparent;
            color: #6b7280;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-body .tab-button.active {
            border-bottom-color: #0284c7;
            color: #0284c7;
        }

        .modal-body .tab-button:hover:not(.active) {
            color: #374151;
        }

        .modal-body .program-card {
            background: #f9fafb;
            border: 1.5px solid #e5e7eb;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .modal-body .program-card:hover {
            border-color: #0284c7;
            box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
        }

        .modal-body .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
            gap: 16px;
        }

        .modal-body .program-year {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
        }

        .modal-body .program-status {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal-body .status-active {
            background: #d1fae5;
            color: #065f46;
        }

        .modal-body .status-upcoming {
            background: #fef3c7;
            color: #92400e;
        }

        .modal-body .status-closed {
            background: #fee2e2;
            color: #991b1b;
        }

        .modal-body .program-date {
            font-size: 13px;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .modal-body .program-date i {
            color: #0284c7;
            font-size: 12px;
        }

        .modal-body .documents-section {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1.5px solid #e5e7eb;
        }

        .modal-body .documents-label {
            font-size: 11px;
            font-weight: 700;
            color: #374151;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-body .documents-label i {
            color: #ef4444;
            font-size: 13px;
        }

        .modal-body .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 12px;
        }

        .modal-body .document-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #eff6ff;
            color: #0284c7;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #bfdbfe;
            text-decoration: none;
            overflow: hidden;
        }

        .modal-body .document-item:hover {
            background: #0284c7;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(2, 132, 199, 0.2);
        }

        .modal-body .document-item i {
            font-size: 12px;
            flex-shrink: 0;
        }

        .modal-body .document-item-text {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .modal-body .program-footer {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .modal-body .btn-view-program {
            background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1;
            text-decoration: none;
        }

        .modal-body .btn-view-program:hover {
            box-shadow: 0 12px 24px rgba(2, 132, 199, 0.3);
            transform: translateY(-2px);
        }

        .modal-body .btn-view-program i {
            font-size: 13px;
        }

        .modal-body .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: #f9fafb;
            border-radius: 16px;
            border: 2px dashed #e5e7eb;
        }

        .modal-body .empty-state i {
            font-size: 48px;
            color: #d1d5db;
            margin-bottom: 16px;
        }

        .modal-body .empty-state p {
            margin: 0;
            color: #6b7280;
            font-size: 15px;
            font-weight: 500;
        }

        .modal-body .document-tabs {
            display: flex;
            gap: 6px;
            margin-bottom: 20px;
            border-bottom: 2px solid #e5e7eb;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 0;
        }

        .modal-body .document-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .modal-body .document-tabs::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body .document-tabs::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 2px;
        }

        .modal-body .doc-tab-button {
            padding: 10px 16px;
            border: none;
            background: transparent;
            color: #6b7280;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .modal-body .doc-tab-button.active {
            border-bottom-color: #ef4444;
            color: #ef4444;
        }

        .modal-body .doc-tab-button:hover:not(.active) {
            color: #374151;
        }

        .modal-body .doc-tab-button i {
            font-size: 12px;
        }

        .modal-body .doc-content-section {
            display: grid;
            gap: 12px;
        }

        /* Scrollbar styling */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: #9ca3af;
        }

        /* Stats Grid - Minimalist Design */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            padding: 48px 40px;
            background: #fff;
            margin: -60px 40px 40px 40px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            position: relative;
            z-index: 2;
            border: 1px solid #e5e7eb;
        }

        .stat-item {
            text-align: center;
            padding: 32px 24px;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            border-radius: 16px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: #0284c7;
            background: linear-gradient(135deg, #f0f9ff 0%, #f3f4f6 100%);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(135deg, #0284c7, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 13px;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Main Container */
        .apprentice-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 40px;
        }

        .apprentice-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
        }

        /* Sidebar - Minimalist Filter */
        .apprentice-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .apprentice-sidebar.collapsed {
            padding: 20px;
            width: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .apprentice-sidebar.collapsed .sidebar-content {
            display: none;
        }

        .sidebar-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #0284c7;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .sidebar-toggle:hover {
            color: #0369a1;
            transform: scale(1.1);
        }

        .apprentice-sidebar.collapsed .sidebar-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .sidebar-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
        }

        .apprentice-sidebar.collapsed .sidebar-header {
            display: none;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e5e7eb;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
            margin-bottom: 24px;
            background: #fafbfc;
        }

        .search-input:focus {
            outline: none;
            border-color: #0284c7;
            background: #f0f9ff;
            box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
        }

        .filter-group {
            margin-bottom: 32px;
        }

        .filter-group-title {
            font-size: 11px;
            font-weight: 700;
            color: #1f2937;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 16px;
            display: block;
        }

        /* Main Content */
        .apprentice-content {
            min-height: 600px;
        }

        .content-header {
            margin-bottom: 48px;
        }

        /* Advanced Filters Styles */
        .sidebar-content input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
            accent-color: #0284c7;
        }

        .sidebar-content label {
            user-select: none;
        }

        .sidebar-content label:hover {
            background-color: #f0f9ff !important;
        }

        .content-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .content-subtitle {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.7;
            max-width: 600px;
        }

        /* Program Cards Grid */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 28px;
        }

        .bank-group {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border: 1.5px solid #e5e7eb;
        }

        .bank-group:hover {
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
            border-color: #0284c7;
        }

        .bank-header {
            padding: 32px;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid #e5e7eb;
        }

        .bank-header:hover {
            background: linear-gradient(135deg, #f0f9ff 0%, #f3f4f6 100%);
        }

        .bank-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .bank-logo {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 14px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #e5e7eb;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .bank-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .bank-details {
            flex: 1;
        }

        .bank-name {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .bank-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .badge-active {
            background: #d1fae5;
            color: #065f46;
        }

        .badge-count {
            background: #f3f4f6;
            color: #6b7280;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 12px;
        }

        .expand-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f3f4f6;
            border-radius: 12px;
            font-size: 18px;
            color: #6b7280;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .bank-group.expanded .expand-icon {
            transform: rotate(180deg);
            background: linear-gradient(135deg, #0284c7, #6366f1);
            color: #fff;
        }

        /* Year Modal Grid */
        .year-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .year-modal-content {
            background: #fff;
            border-radius: 24px;
            max-width: 700px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            animation: slideUp 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .year-modal-header {
            padding: 40px;
            background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
            color: #1f2937;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e5e7eb;
            border-radius: 24px 24px 0 0;
        }

        .year-modal-header h2 {
            margin: 0;
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .year-modal-body {
            padding: 32px;
        }

        .years-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .year-card {
            padding: 24px;
            border: 1.5px solid #e5e7eb;
            border-radius: 16px;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .year-card:hover {
            border-color: #0284c7;
            background: linear-gradient(135deg, #f0f9ff 0%, #f3f4f6 100%);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(2, 132, 199, 0.15);
        }

        .year-card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0284c7, #6366f1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            margin: 0 auto 12px;
        }

        .year-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .year-card-stats {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .year-card-stat {
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: 600;
        }

        .year-card-stat-active {
            background: #d1fae5;
            color: #065f46;
        }

        .year-card-stat-upcoming {
            background: #fef3c7;
            color: #92400e;
        }

        .year-card-stat-closed {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Programs List */
        .programs-list {
            padding: 32px;
            display: grid;
            gap: 20px;
            background: #fff;
        }

        .program-card {
            padding: 24px;
            border: 1.5px solid #e5e7eb;
            border-radius: 16px;
            background: linear-gradient(135deg, #fafbfc 0%, #f9fafb 100%);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .program-card:hover {
            border-color: #0284c7;
            background: linear-gradient(135deg, #f0f9ff 0%, #f9fafb 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(2, 132, 199, 0.12);
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 14px;
        }

        .program-year {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
        }

        .program-status {
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
        }

        .status-active {
            background: #d1fae5;
            color: #065f46;
        }

        .status-upcoming {
            background: #fef3c7;
            color: #92400e;
        }

        .status-closed {
            background: #fee2e2;
            color: #991b1b;
        }

        .program-description {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .program-date {
            font-size: 13px;
            color: #0284c7;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .program-footer {
            display: flex;
            gap: 12px;
        }

        .btn-view-program {
            flex: 1;
            padding: 10px 16px;
            background: linear-gradient(135deg, #0284c7, #0ea5e9);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border-bottom: 2.5px solid transparent;
        }

        .btn-view-program:hover, .btn-view-program:focus {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(2, 132, 199, 0.3);
            border-bottom: 2.5px solid #fff;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        }

        .btn-view-program:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(2, 132, 199, 0.3);
        }

        .btn-view-program.closed {
            background: #e5e7eb;
            cursor: default;
        }

        .btn-view-program.closed:hover {
            background: #e5e7eb;
            transform: none;
            box-shadow: none;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 100px 40px;
            color: #6b7280;
        }

        .empty-icon {
            font-size: 64px;
            margin-bottom: 24px;
            opacity: 0.3;
        }

        .empty-text {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .empty-subtext {
            font-size: 14px;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .apprentice-layout {
                grid-template-columns: 1fr;
            }

            .apprentice-sidebar {
                position: static;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                margin: -40px 24px 24px 24px;
                padding: 32px 24px;
            }

            .programs-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .apprentice-hero {
                padding: 60px 24px;
            }

            .apprentice-hero h1 {
                font-size: 36px;
            }

            .apprentice-container {
                padding: 32px 20px;
            }

            .bank-header {
                padding: 24px;
            }

            .bank-name {
                font-size: 16px;
            }

            .bank-logo {
                width: 64px;
                height: 64px;
            }

            .programs-list {
                padding: 24px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                margin: -30px 20px 20px 20px;
                padding: 24px;
                gap: 16px;
            }

            .stat-item {
                padding: 24px 16px;
            }

            .stat-number {
                font-size: 32px;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }
        }
