/* ============================================================
   TECH GREEN STEPS — Internship Page — Home / Hero Section
   ============================================================ */

.intern-hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

.intern-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ---------- Left content ---------- */
.intern-badge {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 18px;
  border-radius: 24px;
  margin-bottom: 22px;
}

.intern-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.2px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intern-hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 30px;
}

.intern-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intern-hero-btns .btn-primary i {
  font-size: 0.85rem;
}

/* ---------- Right visual ---------- */
.intern-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intern-hero-img {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 48px -20px rgba(15, 40, 30, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.intern-hero-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -18px rgba(15, 40, 30, 0.34);
}

/* ---------- Stats strip ---------- */
.intern-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 40px;
  padding: 22px 10px;
  border-top: 1px solid var(--border-light);
}

.intern-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 1px solid var(--border-light);
  transition: color 0.25s ease;
}

.intern-stat:first-child {
  border-left: none;
}

.intern-stat i {
  color: var(--green-primary);
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.intern-stat:hover {
  color: var(--green-primary);
}

.intern-stat:hover i {
  transform: translateY(-2px) scale(1.08);
}

/* ============================================================
   WHY CHOOSE TECH GREEN STEPS
   ============================================================ */
.intern-why {
  background: var(--bg-light);
  padding: 72px 0 80px;
}

.intern-why-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--green-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ew-line {
  width: 26px;
  height: 2px;
  background: var(--green-primary);
  display: inline-block;
  border-radius: 2px;
}

.ew-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.intern-why-title {
  text-align: center;
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.intern-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.intern-why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 34px 22px;
  text-align: center;
  box-shadow: 0 4px 14px -8px rgba(15, 40, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intern-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -18px rgba(15, 40, 30, 0.28);
  border-color: var(--green-primary);
}

.intern-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.intern-why-card:hover .intern-why-icon {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.08);
}

.intern-why-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.intern-why-card-desc {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .intern-hero-inner { grid-template-columns: 1fr; }
  .intern-hero-visual { order: -1; margin-bottom: 10px; }
  .intern-hero-title { font-size: 2.15rem; }

  .intern-stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .intern-stat:nth-child(3) { border-left: none; }

  .intern-why-grid { grid-template-columns: repeat(3, 1fr); }
  .intern-why-card:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 640px) {
  .intern-hero { padding: 40px 0 0; }
  .intern-hero-title { font-size: 1.7rem; }
  .intern-hero-btns { flex-wrap: wrap; }

  .intern-stats-strip { grid-template-columns: 1fr; row-gap: 18px; padding: 20px 10px; }
  .intern-stat { border-left: none; justify-content: flex-start; }

  .intern-why { padding: 48px 0 56px; }
  .intern-why-title { font-size: 1.5rem; margin-bottom: 30px; }
  .intern-why-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   TECHNOLOGY STREAMS
   ============================================================ */
.tech-streams {
  background: var(--white);
  padding: 72px 0 80px;
}

.tech-streams-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #8A2E3B;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tsw-line {
  width: 26px;
  height: 2px;
  background: #8A2E3B;
  display: inline-block;
  border-radius: 2px;
}

.tsw-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8A2E3B;
  display: inline-block;
}

.tech-streams-title {
  text-align: center;
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 46px;
}

.tech-streams-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-card {
  flex: 0 0 158px;
  width: 158px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 26px 16px 22px;
  text-align: center;
  box-shadow: 0 4px 14px -8px rgba(15, 40, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -18px rgba(15, 40, 30, 0.28);
  border-color: var(--green-primary);
}

.tech-icon {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.12);
}

.tech-icon-brain      { color: #2E8B4F; }
.tech-icon-python     { color: #3776AB; }
.tech-icon-java       { color: #E76F00; }
.tech-icon-mongo      { color: #2E8B4F; }
.tech-icon-cloud      { color: #2196F3; }
.tech-icon-security   { color: #2E8B4F; }
.tech-icon-analytics  { color: #6A1B9A; }
.tech-icon-devops     { color: #1976D2; }
.tech-icon-flutter    { color: #42A5F5; }
.tech-icon-uiux       { color: #6A1B9A; }
.tech-icon-testing    { color: #2E8B4F; }
.tech-icon-iot        { color: #00ACC1; }
.tech-icon-data-eng   { color: #F57C00; }
.tech-icon-marketing  { color: #E53935; }
.tech-icon-aids       { color: #6A1B9A; }

.tech-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 14px;
  min-height: 38px;
}

.tech-seats {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  border: 1px solid #CFE4D4;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ---------- Wide card (last item) ---------- */
.tech-card-wide {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  text-align: left;
}

.tech-card-wide .tech-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.tech-card-title-inline {
  margin-bottom: 0;
  min-height: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .tech-streams { padding: 48px 0 56px; }
  .tech-streams-title { font-size: 1.5rem; margin-bottom: 30px; }
  .tech-card { flex: 0 0 130px; width: 130px; padding: 20px 12px 18px; }
  .tech-icon { font-size: 1.6rem; height: 36px; }
  .tech-card-title { font-size: 0.8rem; }
  .tech-card-wide { flex-direction: column; text-align: center; gap: 10px; width: 100%; }
  .tech-card-title-inline { white-space: normal; }
}

/* ============================================================
   ENGINEERING SPECIALIZATION
   ============================================================ */
.eng-spec {
  background: var(--bg-light);
  padding: 72px 0 80px;
}

.eng-spec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #1B4B91;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.esw-line {
  width: 26px;
  height: 2px;
  background: #1B4B91;
  display: inline-block;
  border-radius: 2px;
}

.esw-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1B4B91;
  display: inline-block;
}

.eng-spec-title {
  text-align: center;
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 46px;
}

.eng-spec-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.eng-card {
  flex: 0 0 158px;
  width: 158px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 26px 16px 22px;
  text-align: center;
  box-shadow: 0 4px 14px -8px rgba(15, 40, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eng-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -18px rgba(15, 40, 30, 0.28);
  border-color: #1B4B91;
}

.eng-icon {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.eng-card:hover .eng-icon {
  transform: scale(1.12);
}

.eng-icon-catia      { color: #1B4B91; }
.eng-icon-creo       { color: #2E8B4F; }
.eng-icon-ansys      { color: #E76F00; }
.eng-icon-autocad    { color: #E53935; }
.eng-icon-revit      { color: #1976D2; }
.eng-icon-staad      { color: #6A1B9A; }
.eng-icon-matlab     { color: #F57C00; }
.eng-icon-electrical { color: #00838F; }

.eng-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 14px;
  min-height: 38px;
}

.eng-seats {
  display: inline-block;
  background: #E9EFF9;
  color: #1B4B91;
  border: 1px solid #CBDAF0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

@media (max-width: 640px) {
  .eng-spec { padding: 48px 0 56px; }
  .eng-spec-title { font-size: 1.5rem; margin-bottom: 30px; }
  .eng-card { flex: 0 0 130px; width: 130px; padding: 20px 12px 18px; }
  .eng-icon { font-size: 1.6rem; height: 36px; }
  .eng-card-title { font-size: 0.8rem; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar-section {
  padding: 0 0 80px;
}

.stats-bar {
  background: linear-gradient(135deg, #0B1E3D, #0E2A52);
  border-radius: 22px;
  padding: 34px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 24px 48px -22px rgba(11, 30, 61, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.stats-bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px -20px rgba(11, 30, 61, 0.6);
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  transition: transform 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-3px);
}

.stats-icon {
  font-size: 1.7rem;
  color: var(--green-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.stats-item:hover .stats-icon {
  transform: scale(1.12);
}

.stats-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.stats-number {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green-accent);
}

.stats-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.stats-divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 26px 24px;
    gap: 24px 20px;
    border-radius: 18px;
  }
  .stats-item { flex: 0 0 42%; }
  .stats-divider { display: none; }
}

@media (max-width: 480px) {
  .stats-item { flex: 0 0 100%; justify-content: center; }
  .stats-bar-section { padding: 0 0 56px; }
}