
    /* ── INTERNSHIP PAGE STYLES ── */
    :root {
      --navy: #102a63;
      --navy2: #1a3d8f;
      --orange: #e05a00;
      --bg: #f5f7fb;
      --card: #ffffff;
      --text: #252f2d;
      --muted: #6b7280;
      --border: #e5e7eb;
      --radius: 14px;
      --shadow: 0 2px 12px rgba(16,42,99,0.08);
      --shadow-lg: 0 8px 32px rgba(16,42,99,0.14);
    }

    /* ── HERO ── */
    .intern-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      padding: 60px 40px 52px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .intern-hero::before {
      content: '';
      position: absolute;
      top: -70px; right: -70px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(224,90,0,0.18);
      pointer-events: none;
    }
    .intern-hero::after {
      content: '';
      position: absolute;
      bottom: -50px; left: -50px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .intern-hero h1 {
      color: #fff;
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 12px;
      position: relative;
    }
    .intern-hero p {
      color: rgba(255,255,255,0.72);
      font-size: 16px;
      max-width: 520px;
      margin: 0 auto;
      position: relative;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 36px;
      position: relative;
    }
    .hero-stat .num {
      display: block;
      font-size: 30px;
      font-weight: 700;
      color: #fff;
    }
    .hero-stat .lbl {
      display: block;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      margin-top: 2px;
    }

    /* ── MAIN WRAP ── */
    .intern-main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 44px 24px 80px;
    }

    /* ── TABS ── */
    .i-tabs {
      display: flex;
      gap: 6px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 6px;
      width: fit-content;
      margin-bottom: 28px;
    }
    .i-tab {
      padding: 9px 26px;
      border: none;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      background: transparent;
      color: var(--muted);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .i-tab.active { background: var(--navy); color: #fff; }
    .i-tab .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #22c55e;
    }
    .i-tab.past-tab .dot { background: var(--muted); }

    /* ── FILTER BAR ── */
    .filter-bar {
      display: flex;
      gap: 10px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    .filter-bar input {
      flex: 1;
      min-width: 220px;
      padding: 10px 16px 10px 42px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 14px center;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .filter-bar input:focus { border-color: var(--navy); }
    .filter-bar select {
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      background: #fff;
      color: var(--text);
      cursor: pointer;
      outline: none;
    }

    /* ── CARDS GRID ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    /* ── CARD ── */
    .i-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      position: relative;
      overflow: hidden;
    }
    .i-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--navy);
      border-radius: var(--radius) var(--radius) 0 0;
    }
    .i-card.past::before { background: var(--muted); }
    .i-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
    .i-card.past:hover { border-color: var(--muted); }

    .card-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
    }
    .card-logo {
      width: 46px; height: 46px;
      border-radius: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }
    .cbadge {
      font-size: 11px; font-weight: 600;
      padding: 4px 10px; border-radius: 20px; letter-spacing: 0.4px;
    }
    .cbadge-live { background: #dcfce7; color: #15803d; }
    .cbadge-past { background: #f3f4f6; color: #6b7280; }
    .cbadge-urgent { background: #fef3c7; color: #92400e; }

    .i-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
    .i-card .co { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

    .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .ctag {
      font-size: 12px; padding: 4px 10px;
      border-radius: 6px; font-weight: 500;
    }
    .ctag-blue { background: #eff6ff; color: #1d4ed8; }
    .ctag-gray { background: #f3f4f6; color: #374151; }

    .card-meta {
      display: flex; gap: 14px; flex-wrap: wrap;
      font-size: 12px; color: var(--muted);
    }
    .card-meta span { display: flex; align-items: center; gap: 4px; }
    .card-meta i { font-size: 14px; }

    .card-foot {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 18px; padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .stipend { font-size: 15px; font-weight: 700; color: var(--navy); }
    .stipend small { font-size: 11px; font-weight: 400; color: var(--muted); }
    .i-card.past .stipend { color: var(--muted); }
    .card-cta { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 4px; }
    .i-card.past .card-cta { color: var(--muted); }

    .empty-state {
      grid-column: 1 / -1;
      text-align: center; padding: 60px 20px; color: var(--muted);
    }
    .empty-state i { font-size: 48px; display: block; margin-bottom: 12px; }

    /* ── MODAL OVERLAY ── */
    .m-overlay {
      position: fixed; inset: 0;
      background: rgba(16,42,99,0.45);
      z-index: 10000;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s;
    }
    .m-overlay.open { opacity: 1; pointer-events: all; }

    .m-box {
      background: #fff;
      border-radius: 20px;
      width: 100%; max-width: 720px;
      max-height: 90vh; overflow-y: auto;
      transform: translateY(24px) scale(0.97);
      transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1);
    }
    .m-overlay.open .m-box { transform: translateY(0) scale(1); }

    /* Modal hero */
    .m-hero {
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      padding: 28px 32px 24px;
      border-radius: 20px 20px 0 0;
      position: relative;
    }
    .m-close {
      position: absolute; top: 16px; right: 16px;
      background: rgba(255,255,255,0.15); border: none; color: #fff;
      width: 34px; height: 34px; border-radius: 50%; font-size: 18px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .m-close:hover { background: rgba(255,255,255,0.28); }
    .m-logo {
      width: 56px; height: 56px; border-radius: 12px;
      background: #fff; display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin-bottom: 14px;
    }
    .m-hero h2 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
    .m-hero .m-co { color: rgba(255,255,255,0.7); font-size: 14px; }

    /* Modal body */
    .m-body { padding: 28px 32px; }

    .info-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-bottom: 26px;
    }
    .info-box {
      background: var(--bg); border-radius: 10px; padding: 14px 16px;
    }
    .info-box .ib-l { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .info-box .ib-v { font-size: 15px; font-weight: 600; color: var(--text); }
    .info-box.hl .ib-v { color: var(--navy); }
    .info-box.og .ib-v { color: var(--orange); }

    .s-title {
      font-size: 14px; font-weight: 700; color: var(--text);
      margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
    }
    .s-title i { color: var(--navy); font-size: 16px; }

    .desc { font-size: 14px; color: #374151; line-height: 1.75; margin-bottom: 24px; }

    .skills-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
    .s-pill {
      background: #eff6ff; color: #1d4ed8;
      font-size: 13px; font-weight: 500;
      padding: 5px 13px; border-radius: 20px;
    }

    .perks-list { list-style: none; margin-bottom: 24px; }
    .perks-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: #374151;
      padding: 7px 0; border-bottom: 1px solid var(--border);
    }
    .perks-list li:last-child { border-bottom: none; }
    .perks-list i { color: #22c55e; margin-top: 2px; font-size: 16px; flex-shrink: 0; }

    /* Fee box */
    .fee-box {
      background: linear-gradient(135deg, #fff7ed, #fff);
      border: 1.5px solid #fed7aa;
      border-radius: 14px; padding: 20px 24px; margin-bottom: 24px;
    }
    .fee-box h4 {
      font-size: 14px; font-weight: 700; color: #9a3412;
      margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
    }
    .fee-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 14px; padding: 6px 0; border-bottom: 1px solid #fed7aa; color: #374151;
    }
    .fee-row:last-of-type { border-bottom: none; }
    .fee-row .fa { font-weight: 600; color: var(--orange); }
    .fee-total {
      display: flex; justify-content: space-between; align-items: center;
      font-weight: 700; font-size: 16px;
      margin-top: 10px; padding-top: 10px;
      border-top: 2px solid #fed7aa; color: var(--text);
    }
    .fee-total .ta { color: var(--orange); font-size: 20px; }

    /* Apply form */
    .apply-section {
      background: var(--bg); border-radius: 14px; padding: 24px;
    }
    .apply-section h4 {
      font-size: 15px; font-weight: 700; color: var(--text);
      margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
    }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .f-grp { display: flex; flex-direction: column; gap: 6px; }
    .f-grp label {
      font-size: 12px; font-weight: 600; color: var(--muted);
      text-transform: uppercase; letter-spacing: 0.4px;
    }
    .f-grp input, .f-grp select, .f-grp textarea {
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px; color: var(--text);
      background: #fff; outline: none;
      transition: border-color 0.2s;
    }
    .f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus { border-color: var(--navy); }
    .f-grp textarea { resize: vertical; min-height: 80px; }
    .f-full { grid-column: 1 / -1; }

    .apply-btn {
      width: 100%; padding: 15px;
      background: var(--navy); color: #fff; border: none;
      border-radius: 12px; font-family: 'Poppins', sans-serif;
      font-size: 15px; font-weight: 700; cursor: pointer;
      margin-top: 18px; transition: background 0.2s, transform 0.1s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .apply-btn:hover { background: var(--navy2); }
    .apply-btn:active { transform: scale(0.99); }

    .refund-note {
      font-size: 12px; color: var(--muted);
      margin-top: 10px; text-align: center;
    }

    .success-msg {
      display: none; text-align: center; padding: 30px;
    }
    .success-msg i { font-size: 52px; color: #22c55e; display: block; margin-bottom: 12px; }
    .success-msg h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
    .success-msg p { font-size: 14px; color: var(--muted); }

    .past-note {
      text-align: center; padding: 20px;
      background: #f9fafb; border-radius: 12px;
      color: var(--muted); font-size: 14px; margin-bottom: 20px;
    }
    .past-note i { font-size: 28px; display: block; margin-bottom: 8px; }

    /* ── SIDE FLOATERS (your existing) ── */
    .side-floaters {
      position: fixed; left: 0; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 12px; z-index: 9999;
    }
    .floater {
      display: flex; align-items: center;
      text-decoration: none; overflow: hidden;
      border-radius: 0 10px 10px 0;
      width: 44px;
      transition: width 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
    }
    .floater:hover { width: 160px; }
    .floater-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .floater-label {
      height: 44px; display: flex; align-items: center;
      padding: 0 14px; font-size: 13px; font-weight: 500;
      white-space: nowrap; flex-shrink: 0;
    }
    .f-intern { background: #102a63; }
    .f-intern .floater-icon, .f-intern .floater-label { color: #c5d4f8; }
    .f-courses { background: #e05a00; }
    .f-courses .floater-icon, .f-courses .floater-label { color: #ffdfc7; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .intern-hero { padding: 40px 20px 36px; }
      .intern-hero h1 { font-size: 26px; }
      .hero-stats { gap: 24px; }
      .intern-main { padding: 24px 16px 60px; }
      .m-body { padding: 20px; }
      .m-hero { padding: 22px 20px; }
      .f-row { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr 1fr; }
    }
