/**
 * internship.css  —  White Banger Internship Page  v2.0
 * Bold, high-impact design. Not bland.
 */

/* ══════════════════════════════════════════════════════════
   0. NEP NOTICE BANNER
   ══════════════════════════════════════════════════════════ */
.int-nep-banner {
  background: linear-gradient(90deg, #fef3c7 0%, #fef9ec 60%, #eff6ff 100%);
  border-bottom: 2px solid #f59e0b;
  padding: 14px 0;
}
.int-nep-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.int-nep-badge {
  flex-shrink: 0;
  background: #f59e0b;
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}
.int-nep-text {
  flex: 1;
  font-size: 14px;
  color: #1e293b;
  margin: 0;
  line-height: 1.55;
}
.int-nep-text strong {
  color: #b45309;
}
.int-nep-highlight {
  display: inline;
  color: #1a56db;
  font-weight: 600;
}
.int-nep-cta {
  flex-shrink: 0;
  background: #1a56db;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.int-nep-cta:hover { background: #1440a8; }

@media (max-width: 600px) {
  .int-nep-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .int-nep-cta { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   1. HERO  —  full-bleed dark gradient + depth
   ══════════════════════════════════════════════════════════ */
.int-hero {
  background: #060e38;
  padding: 72px 0 60px;
  overflow: hidden;
  position: relative;
}

/* Multi-layer glow background */
.int-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,219,.55) 0%, transparent 65%);
  top: -160px; right: -120px;
  pointer-events: none;
}
.int-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(147,51,234,.35) 0%, transparent 65%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.int-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.int-hero-inner > div:first-child { flex: 1 1 0; min-width: 0; }

/* Badge */
.int-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(245,158,11,.18), rgba(245,158,11,.08));
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,.5);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}

/* Hero heading */
.int-hero-title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.int-hero-title span {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.int-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 500px;
}


/* Buttons */
.int-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.int-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(26,86,219,.5), 0 1px 2px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .01em;
}
.int-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,86,219,.6);
  color: #fff;
}

.int-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.int-btn-secondary:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-3px);
  color: #fff;
}

/* Stats box */
.int-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex-shrink: 0;
  width: 300px;
}

.int-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.int-stat-card:hover { transform: translateY(-2px); }
.int-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.int-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.int-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   2. PERKS STRIP  —  vibrant icon pills
   ══════════════════════════════════════════════════════════ */
.int-perks {
  background: linear-gradient(135deg, #0f1f6e 0%, #1e1065 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.int-perks::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.int-perks-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.int-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 22px;
  backdrop-filter: blur(8px);
  transition: transform .2s, background .2s;
  flex: 1 1 200px;
  max-width: 260px;
}
.int-perk:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
}

.int-perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.int-perk-icon.blue   { background: rgba(59,130,246,.25); }
.int-perk-icon.green  { background: rgba(16,185,129,.25); }
.int-perk-icon.purple { background: rgba(168,85,247,.25); }
.int-perk-icon.amber  { background: rgba(245,158,11,.25); }

.int-perk-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.int-perk-sub {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   3. COURSES SECTION
   ══════════════════════════════════════════════════════════ */
.int-courses {
  padding: 88px 0 80px;
  background: #f8faff;
  position: relative;
}
.int-courses::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a56db, #9333ea, #f43f5e, #f59e0b);
}

.int-courses-header {
  text-align: center;
  margin-bottom: 16px;
}

.int-courses-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1a56db, #9333ea);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(26,86,219,.35);
}

.int-courses-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: #060e38;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.int-courses-title span { color: #1a56db; }

.int-courses-sub {
  font-size: 16px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.7;
}


/* Grid */
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

/* ── Course Card ── */
.int-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(6,14,56,.07);
  border: 1.5px solid #e8eef8;
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.int-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6,14,56,.13);
  border-color: transparent;
}

/* Top accent bar */
.int-card-accent {
  height: 5px;
  width: 100%;
}
.acc-indigo { background: linear-gradient(90deg,#4f46e5,#818cf8); }
.acc-purple { background: linear-gradient(90deg,#9333ea,#c084fc); }
.acc-blue   { background: linear-gradient(90deg,#1a56db,#60a5fa); }
.acc-green  { background: linear-gradient(90deg,#10b981,#6ee7b7); }
.acc-amber  { background: linear-gradient(90deg,#f59e0b,#fde68a); }
.acc-cyan   { background: linear-gradient(90deg,#0ea5e9,#7dd3fc); }
.acc-rose   { background: linear-gradient(90deg,#f43f5e,#fda4af); }
.acc-pink   { background: linear-gradient(90deg,#ec4899,#f9a8d4); }
.acc-red    { background: linear-gradient(90deg,#ef4444,#fca5a5); }
.acc-teal   { background: linear-gradient(90deg,#14b8a6,#5eead4); }
.acc-orange { background: linear-gradient(90deg,#f97316,#fdba74); }

/* Card head */
.int-card-head {
  padding: 22px 22px 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.int-card-num {
  font-size: 12px;
  font-weight: 900;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.num-indigo { background: #ede9fe; color: #4f46e5; }
.num-purple { background: #faf5ff; color: #9333ea; }
.num-blue   { background: #eff6ff; color: #1a56db; }
.num-green  { background: #f0fdf4; color: #059669; }
.num-amber  { background: #fffbeb; color: #d97706; }
.num-cyan   { background: #f0f9ff; color: #0284c7; }
.num-rose   { background: #fff1f2; color: #e11d48; }
.num-teal   { background: #f0fdfa; color: #0d9488; }
.num-orange { background: #fff7ed; color: #ea580c; }

.int-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

/* Card body */
.int-card-body {
  padding: 0 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.int-card-tools-label {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.int-card-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.int-tool-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 7px;
  border: 1px solid #e2e8f0;
  transition: background .15s;
}
.int-card:hover .int-tool-tag {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.int-card-outcome {
  background: linear-gradient(135deg, #f0f7ff, #f5f0ff);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
  margin-top: auto;
  border: 1px solid #dde8ff;
}
.int-card-outcome strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: #6366f1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Card footer */
.int-card-footer {
  padding: 14px 22px 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.int-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
}

.int-card-btn {
  background: linear-gradient(135deg, #1a56db, #6366f1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(26,86,219,.35);
}
.int-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,86,219,.45);
  color: #fff;
}

/* ── FREE / FEATURED card ── */
.int-card-free {
  background: linear-gradient(160deg, #060e38 0%, #1a3a8f 50%, #1a56db 100%);
  border-color: rgba(96,165,250,.3);
}
.int-card-free .int-card-head { padding-top: 22px; }
.int-card-free .int-card-title { color: #fff; }
.int-card-free .int-card-tools-label { color: rgba(255,255,255,.45); }
.int-card-free .int-card-body  { border: none; }
.int-card-free .int-card-footer { border-top-color: rgba(255,255,255,.12); }
.int-card-free .int-duration-badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
}

.int-free-tag {
  display: inline-block;
  background: linear-gradient(90deg,#f59e0b,#ef4444);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.int-free-title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
}

.int-free-sub {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0 0 16px;
}

.int-free-left,
.int-free-middle,
.int-free-right { padding: 16px 22px; }

.int-free-middle {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.int-free-middle-label,
.int-free-outcome-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.int-free-tools { display: flex; flex-wrap: wrap; gap: 6px; }
.int-free-tool {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.15);
}

.int-free-outcome-text {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

.int-free-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg,#f59e0b,#ef4444);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin: 4px 22px 22px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  letter-spacing: .02em;
}
.int-free-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.55);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   4. BOTTOM CTA  —  bold full-bleed
   ══════════════════════════════════════════════════════════ */
.int-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: #060e38;
}
.int-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.4) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.int-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,.15) 0%, rgba(147,51,234,.15) 100%);
  pointer-events: none;
}

.int-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.int-cta-text h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.int-cta-text h2 span {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.int-cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
  line-height: 1.7;
}

.int-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   5. MOBILE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .int-hero { padding: 52px 0 44px; }

  .int-hero-inner {
    flex-direction: column;
    gap: 32px;
  }

  .int-hero-stats {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 10px;
  }
  .int-stat-card  { padding: 16px 8px; border-radius: 14px; }
  .int-stat-num   { font-size: 26px; }
  .int-stat-label { font-size: 10px; }

  .int-perks-inner { flex-direction: column; align-items: stretch; }
  .int-perk        { max-width: 100%; }

  .int-courses { padding: 56px 0 52px; }
  .int-grid    { grid-template-columns: 1fr; }

  .int-cta { padding: 64px 0; }


}

@media (max-width: 480px) {
  .int-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .int-hero-btns  { flex-direction: column; }
  .int-btn-primary, .int-btn-secondary {
    text-align: center;
    justify-content: center;
  }
}
