/* ======================================================
   TNP Portal — Design System & Styles
   ====================================================== */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --primary: #E85D04;
  --primary-light: #FF7B2E;
  --primary-dark: #C84C00;
  --accent: #1B2A4A;
  --accent-light: #253A63;
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-dark: #0F1A2E;
  --text: #1E1E2F;
  --text-light: #FFFFFF;
  --muted: #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 50px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.15rem;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 900;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-dark) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 26, 46, 0.92) 0%,
      rgba(27, 42, 74, 0.80) 50%,
      rgba(232, 93, 4, 0.15) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--primary);
}

.hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  background: #fff;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ======================================================
   STATS BAR
   ====================================================== */
.stats {
  background: var(--accent);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-light);
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ======================================================
   HIGHLIGHTS — 4 PILLAR CARDS
   ====================================================== */
.highlights {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.highlights .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* animation start state */
  opacity: 0;
  transform: translateY(30px);
}

.highlight-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232, 93, 4, 0.12);
  border-color: rgba(232, 93, 4, 0.2);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(232, 93, 4, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scale(1.1);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
  transition: fill var(--transition);
}

.highlight-card:hover .highlight-icon svg {
  fill: #fff;
}

.highlight-stat {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.highlight-list {
  text-align: left;
  list-style: none;
  padding: 0;
}

.highlight-list li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* ======================================================
   CONTENT SECTIONS (Placement, Training, etc.)
   ====================================================== */
.content-section {
  padding: 100px 0;
}

.content-section:nth-child(even) {
  background: var(--bg-alt);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse>* {
  direction: ltr;
}

.content-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8e8ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-image:hover img {
  transform: scale(1.04);
}

.content-image .img-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  top: 12px;
  left: 12px;
  z-index: -1;
  opacity: 0.3;
}

.content-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.content-body h2 span {
  color: var(--primary);
}

.content-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body .btn {
  padding: 12px 28px;
  margin-top: 8px;
}

/* ======================================================
   MARQUEE / INFINITE SCROLL
   ====================================================== */
.marquee-section {
  padding: 80px 0;
  overflow: hidden;
}

.marquee-section.bg-alt {
  background: var(--bg-alt);
}

.marquee-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.marquee-track.scroll-left {
  animation: marqueeLeft 40s linear infinite;
}

.marquee-track.scroll-right {
  animation: marqueeRight 40s linear infinite;
}

.marquee-track.scroll-slow {
  animation-duration: 55s;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.marquee-section.bg-alt .marquee-wrapper::before {
  background: linear-gradient(90deg, var(--bg-alt) 0%, transparent 100%);
}

.marquee-section.bg-alt .marquee-wrapper::after {
  background: linear-gradient(270deg, var(--bg-alt) 0%, transparent 100%);
}

.marquee-wrapper+.marquee-wrapper {
  margin-top: 20px;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Employer logo cards */
.employer-card {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all var(--transition);
}

.employer-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.employer-card img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--transition);
}

.employer-card:hover img {
  filter: grayscale(0) opacity(1);
}

.employer-card .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.employer-card:hover .logo-text {
  color: var(--accent);
}

/* Student cards */
.student-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.student-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.student-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 93, 4, 0.2);
}

.student-card:hover::before {
  opacity: 1;
}

.student-card .student-info {
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.student-card .student-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2px;
  line-height: 1.25;
}

.student-card .student-branch {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.student-card .student-package {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.student-card .student-company {
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 600;
  line-height: 1.35;
}

/* Team cards */
.team-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  background: linear-gradient(135deg, #d4e0ed 0%, #e8eef5 100%);
  filter: url(#unblur) contrast(1.1) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
}

.team-card .team-info {
  padding: 18px;
  text-align: center;
}

.team-card .team-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2px;
}

.team-card .team-designation {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card .team-contact {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ======================================================
   SCROLL ANIMATIONS
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .content-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Highlights */
  .highlights {
    padding: 64px 0;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .highlight-card {
    padding: 24px 18px;
  }

  .highlight-stat {
    font-size: 1.6rem;
  }

  /* Content sections */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .content-image {
    max-height: 300px;
  }

  .content-section {
    padding: 64px 0;
  }

  /* Marquee */
  .marquee-section {
    padding: 56px 0;
  }

  .employer-card {
    width: 150px;
    height: 65px;
  }

  .student-card {
    width: 200px;
  }

  .team-card {
    width: 220px;
  }

  .team-card .team-img {
    height: 240px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 28px 20px;
  }
}

/* ======================================================
   PAUSE MARQUEE ON HOVER
   ====================================================== */
@media (hover: hover) {
  .marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
  }
}