/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1D3A;
  --navy-light: #132244;
  --orange: #FF5F1F;
  --orange-hover: #E54E0E;
  --green: #22C55E;
  --green-bg: #ECFDF5;
  --blue-accent: #2563EB;
  --text-dark: #0F172A;
  --text-mid: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,95,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.navbar-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo span { color: var(--orange); }

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 16px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.navbar-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--navy);
  background: var(--bg-light);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-signin {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-signin:hover { border-color: var(--navy); background: var(--bg-light); }

.btn-register {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--orange);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-register:hover {
  background: var(--orange-hover);
  box-shadow: 0 3px 10px rgba(255,95,31,0.3);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f8faff 0%, #fff8f5 100%);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,95,31,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-title .highlight { color: var(--orange); }

.hero-sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-ctas .btn {
  padding: 13px 22px;
  font-size: 13.5px;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-stat-pill .stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/0.75;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card-float .icon {
  width: 36px;
  height: 36px;
  background: #FFF7ED;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-card-float .label { font-size: 11px; color: var(--text-light); }
.hero-card-float .value { font-size: 15px; font-weight: 800; color: var(--navy); }

.hero-bottom-bar {
  background: var(--navy);
  margin-top: 60px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-bottom-bar .bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-bottom-stat {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.hero-bottom-stat + .hero-bottom-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}
.hero-bottom-stat .bnum {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-bottom-stat .blabel {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}


/* ===== COLLEGE LOGO STRIP ===== */
.college-strip {
  background: #F8FAFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 36px 0 28px;
  overflow: hidden;
  position: relative;
}
.college-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
}
.college-track {
  overflow: hidden;
  position: relative;
}
.college-track::before,
.college-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.college-track::before { left: 0;  background: linear-gradient(to right, #F8FAFF, transparent); }
.college-track::after  { right: 0; background: linear-gradient(to left,  #F8FAFF, transparent); }

.college-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-logos 40s linear infinite;
  width: max-content;
}
.college-inner:hover { animation-play-state: paused; }

.college-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 140px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 12px 12px;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  cursor: default;
}
.college-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(11,29,58,0.12);
  border-color: #FF5F1F;
}
.college-card img {
  width: auto;
  height: 72px;
  max-width: 120px;
  object-fit: contain;
  filter: saturate(1.2) brightness(1.05);
  transition: transform 0.28s ease, filter 0.28s ease;
}
.college-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.5) brightness(1.1);
}
.college-card span {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.college-card--text {
  background: linear-gradient(135deg, #0B1D3A 0%, #132244 100%);
  border-color: transparent;
}
.college-card--text:hover {
  border-color: #FF5F1F;
}
.college-card-big-text {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* ===== TRUSTED BY ===== */

.trusted {
  padding: 56px 0;
  background: linear-gradient(135deg, #0B1D3A 0%, #132244 50%, #0B1D3A 100%);
  position: relative;
  overflow: hidden;
}

.trusted::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,95,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.trusted::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.logos-track {
  overflow: hidden;
  position: relative;
}

.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track::before { left: 0; background: linear-gradient(to right, #0B1D3A, transparent); }
.logos-track::after  { right: 0; background: linear-gradient(to left,  #0B1D3A, transparent); }

.logos-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-logos 28s linear infinite;
  width: max-content;
}
.logos-inner:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 28px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: default;
  backdrop-filter: blur(4px);
  min-width: 140px;
  height: 64px;
}
.logo-item:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.35s;
}
.logo-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.logo-item .logo-text {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.5px;
}
.logo-item .college-text {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s ease;
}
.logo-item:hover .college-text {
  color: #fff;
  transform: scale(1.05);
}
.logo-item .logo-icon-box {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}



.top-logos-strip {
  background: linear-gradient(135deg, #0B1D3A 0%, #0f2a50 40%, #13315f 70%, #0B1D3A 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* Animated background shimmer */
.top-logos-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(255,95,31,0.03) 120px,
    rgba(255,95,31,0.03) 121px
  );
  pointer-events: none;
  z-index: 0;
}

/* Edge fade masks */
.top-logos-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #0B1D3A 0%, transparent 12%, transparent 88%, #0B1D3A 100%);
  pointer-events: none;
  z-index: 3;
}

.strip-label {
  text-align: center;
  padding: 18px 0 0;
  position: relative;
  z-index: 4;
}
.strip-label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.strip-label span::before,
.strip-label span::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,95,31,0.5));
}
.strip-label span::after {
  background: linear-gradient(to left, transparent, rgba(255,95,31,0.5));
}

.top-logos-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: scroll-logos 28s linear infinite;
  width: max-content;
  padding: 18px 0 22px;
  position: relative;
  z-index: 2;
}
.top-logos-inner:hover { animation-play-state: paused; }

.top-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 28px;
  margin: 0 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1), border-color 0.3s ease;
  cursor: default;
  height: 80px;
  min-width: 120px;
}
.top-logo-item:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,95,31,0.5);
  box-shadow: 0 0 20px rgba(255,95,31,0.18), 0 0 40px rgba(255,95,31,0.08);
  transform: translateY(-4px) scale(1.05);
}
.top-logo-item img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(1.1) saturate(1.3);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.top-logo-item:hover img {
  filter: brightness(1.2) saturate(1.6) drop-shadow(0 0 8px rgba(255,255,255,0.3));
}
.logo-text-fallback {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}



/* ===== STATS ===== */
.stats-section {
  padding: 64px 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A60);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,29,58,0.12);
  border-color: transparent;
}
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.stat-icon.blue { background: #EFF6FF; }
.stat-icon.orange { background: #FFF7ED; }
.stat-icon.green { background: #F0FDF4; }
.stat-icon.purple { background: #F5F3FF; }

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SEARCH SECTION ===== */
.search-section {
  padding: 48px 0;
  background: #fff;
}

.search-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.search-field:focus-within { border-color: var(--blue-accent); }

.search-field .field-icon { color: var(--text-muted); font-size: 16px; }

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-dark);
  background: transparent;
  width: 100%;
}

.search-field select { cursor: pointer; }

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.type-btns {
  display: flex;
  gap: 6px;
}

.type-btn {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  transition: all 0.2s;
}
.type-btn.active, .type-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-find {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-find:hover {
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(255,95,31,0.3);
}

/* ===== SECTION TITLES ===== */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ===== FEATURED & LATEST INTERNSHIPS (UNIFIED) ===== */
.featured-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.latest-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.see-all:hover { gap: 8px; }

.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.internship-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.internship-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.ic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ic-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.badge-new {
  background: #FFF7ED;
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #FDDCB5;
}

.badge-hot {
  background: #FEF2F2;
  color: #DC2626;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #FECACA;
}

.badge-featured {
  background: #FEF3C7;
  color: #D97706;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #FCD34D;
}

.ic-role { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ic-company { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }

.ic-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

.ic-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-light);
  color: var(--text-mid);
}

.ic-pay {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ic-pay .pay-label { font-weight: 500; color: var(--text-light); font-size: 11px; }

.ic-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.applicants-bar {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 11px;
  color: var(--text-light);
  flex: 1;
}

.bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--green);
}

.btn-apply {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-apply:hover { background: var(--orange); }

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,95,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title { color: #fff; font-size: 42px; font-weight: 900; }
.why-section .section-sub { color: rgba(255,255,255,0.6); font-size: 17px; }
.why-section .section-tag { color: rgba(255,95,31,0.9); font-size: 18px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; }
.testimonials-section .section-tag { color: var(--orange); font-size: 18px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; }

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

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s;
}

.why-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
}

.why-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star { color: #FBBF24; font-size: 16px; }

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,95,31,0.15) 0%, transparent 70%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cta-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.cta-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.cta-title {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-direction: column; }

/* ===== FOOTER ===== */
.footer {
  background: #060E1F;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ===== MOBILE NAV TOGGLE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* Mobile dropdown nav */
.navbar-nav.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 999;
  gap: 4px;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar-nav.mobile-open a {
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border-bottom: none;
}
.navbar-nav.mobile-open .mobile-nav-auth {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.navbar-nav.mobile-open .mobile-nav-auth a {
  flex: 1;
  text-align: center;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

/* ===== RESPONSIVE ===== */

/* ─── Tablet (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .hero-title { font-size: 36px; }
  .internship-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Mobile (≤ 768px) ─── */
@media (max-width: 768px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Navbar */
  .navbar-nav { display: none; }
  .hamburger  { display: flex; }
  .btn-signin { display: none; }
  .navbar-inner { gap: 12px; }

  /* Hero */
  .hero { padding: 40px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-wrap { display: none; }
  .hero-title { font-size: 28px; line-height: 1.2; }
  .hero-sub { font-size: 14px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 13px; }
  .hero-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 16px 16px 0 0;
  }
  .hero-bottom-stat + .hero-bottom-stat::before { display: none; }
  .hero-bottom-stat .bnum { font-size: 22px; }

  /* Search */
  .search-row { flex-direction: column; align-items: stretch; }
  .search-divider { display: none; }
  .type-btns { justify-content: flex-start; flex-wrap: wrap; }

  /* Grids */
  .internship-grid    { grid-template-columns: 1fr; }
  .featured-section   .internship-grid { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .cta-inner          { grid-template-columns: 1fr; }
  .cta-actions        { flex-direction: column; gap: 10px; }
  .cta-actions .btn   { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-row { flex-direction: column; gap: 6px; align-items: center; }

  /* Typography */
  .section-title  { font-size: 22px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Internship cards */
  .internship-card-footer { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Top logos strip */
  .top-logos-strip { padding: 10px 0; }

  /* Stats section */
  .stats-section .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Small Mobile (≤ 480px) ─── */
@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .why-grid   { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Internship card tweaks */
  .internship-card { padding: 16px; }
  .internship-card-title { font-size: 15px; }

  /* Section padding */
  .section { padding: 48px 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }


