/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #012951;
  --primary-light: #013a6b;
  --accent: #9A1F1F;
  --accent-hover: #b92e2e;
  --gold: #d4a437;
  --teal: #012951;
  --teal-light: #013a6b;
  --bg-light: #f5f7fa;
  --bg-dark: #011a33;
  --text-dark: #012951;
  --text-muted: #5a6a7a;
  --text-light: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.85);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c43232);
  color: #fff;
  box-shadow: 0 4px 20px rgba(154, 31, 31, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(154, 31, 31, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(1, 41, 81, 0.3);
}

.btn-secondary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* ===== STICKY HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(1, 41, 81, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-area img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.logo-area span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-area small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.header .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #011a33 0%, #012951 40%, #013a6b 100%);
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 26, 51, 0.85), rgba(1, 41, 81, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== HERO FORM CARD ===== */
.hero-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero-form-card .form-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
  margin-bottom: 28px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.progress-fill {
  position: absolute;
  top: 14px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.step-item.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
}

.step-item.completed .step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.step-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.step-item.active .step-label,
.step-item.completed .step-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== FORM FIELDS ===== */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.form-group select option {
  background: var(--primary);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-nav .btn {
  padding: 11px 24px;
  font-size: 0.85rem;
}

.form-error {
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select {
  border-color: var(--accent);
}

.form-group.error .form-error {
  display: block;
}

.auto-save-indicator {
  font-size: 0.72rem;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

/* ===== ELIGIBILITY ===== */
.eligibility-section {
  background: #fff;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eligibility-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.eligibility-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.eligibility-table th {
  padding: 16px 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.eligibility-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.eligibility-table tr:last-child td {
  border-bottom: none;
}

.eligibility-table tr:hover td {
  background: #f8f9fc;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.check-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.check-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.check-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== STEPS FOR ONLINE ADMISSION ===== */
.steps-section {
  background: #fff;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c43232);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRACTICAL LABS ===== */
.labs-section {
  background: linear-gradient(135deg, #011a33 0%, #012951 100%);
  position: relative;
  overflow: hidden;
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lab-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.lab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.lab-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lab-card-info {
  padding: 20px;
}

.lab-card-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lab-card-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===== PHYSIOTHERAPY OPD ===== */
.opd-section {
  background: #fff;
}

.opd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.opd-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.opd-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.opd-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.opd-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.opd-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.opd-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.opd-hl-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid #eee;
  transition: var(--transition);
}

.opd-hl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.opd-hl-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.opd-hl-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.opd-hl-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== INCUBATION & START-UP ===== */
.incubation-section {
  background: linear-gradient(135deg, var(--primary) 0%, #013a6b 100%);
  position: relative;
  overflow: hidden;
}

.incubation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.incubation-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.inc-feature:hover {
  transform: translateX(4px);
  border-color: var(--gold);
}

.inc-icon {
  font-size: 1.5rem;
  min-width: 36px;
  text-align: center;
}

.inc-feature h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.inc-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

.incubation-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inc-img-main {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.inc-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inc-img-row img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ===== ACCREDITATION & RECOGNITIONS ===== */
.accreditation-section {
  background: var(--bg-light);
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.accr-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.accr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.accr-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  border-radius: var(--radius-sm);
}

.accr-icon {
  font-size: 3rem;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
}

.accr-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.accr-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TRAINING & DEVELOPMENT ===== */
.training-section {
  background: linear-gradient(135deg, #011a33 0%, #012951 100%);
  position: relative;
  overflow: hidden;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.training-card {
  padding: 32px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.training-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.training-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.training-card h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.training-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===== PLACEMENTS ===== */
.placement-section {
  background: var(--bg-light);
}

.subsection-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.placement-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.placement-card {
  height: 250px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.placement-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CAMPUS LIFE ===== */
.campus-section {
  background: #fff;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.campus-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campus-card:hover img {
  transform: scale(1.1);
}

.campus-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  transform: translateY(10px);
  transition: var(--transition);
}

.campus-card:hover .campus-overlay {
  transform: translateY(0);
}

.campus-overlay h4 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 700;
}

.campus-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0;
  transition: 0.3s;
}

.campus-card:hover .campus-overlay p {
  opacity: 1;
}

/* ===== WHY JOIN ===== */
.why-section {
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(245, 166, 35, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SCHOLARSHIPS ===== */
.scholarship-section {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.scholarship-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(233, 69, 96, 0.06);
  top: -200px;
  right: -100px;
}

.scholarship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.scholarship-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.scholarship-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.scholarship-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.scholarship-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  text-align: center;
}

.stat-box .number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author h5 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CAMPUS CAROUSEL ===== */
.campus-section {
  background: var(--bg-light);
}

.campus-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.campus-carousel::-webkit-scrollbar {
  display: none;
}

.campus-card {
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.campus-card:hover {
  transform: scale(1.03);
}

.campus-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.campus-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.2rem;
  min-width: 28px;
}

.faq-item.open .faq-question .icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.85rem;
}

.footer ul a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  filter: brightness(1.25);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ===== 360° VIRTUAL TOUR BUTTON ===== */
.virtual-tour-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #013a6b);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(1, 41, 81, 0.5);
  transition: var(--transition);
  animation: vtPulse 2s ease-in-out infinite;
}

.virtual-tour-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 36px rgba(1, 41, 81, 0.7);
  animation: none;
}

.vt-icon {
  font-size: 1.4rem;
}

.vt-text {
  letter-spacing: 0.3px;
}

@keyframes vtPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(1, 41, 81, 0.5);
  }

  50% {
    box-shadow: 0 6px 32px rgba(1, 41, 81, 0.8), 0 0 12px rgba(212, 164, 55, 0.3);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scholarship-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opd-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .incubation-content {
    grid-template-columns: 1fr;
  }

  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 60px;
    gap: 8px;
  }

  .logo-area img {
    height: 36px;
  }

  .logo-area span {
    font-size: 0.95rem;
  }

  .logo-area small {
    font-size: 0.58rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .header .btn-primary {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 24px 20px;
    gap: 18px;
    backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: fadeSlideIn 0.3s ease;
  }

  .nav-links.open a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 50px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .section-padding {
    padding: 50px 0;
  }

  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .step-label {
    display: none;
  }

  .hero-form-card {
    padding: 24px;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .labs-grid {
    grid-template-columns: 1fr;
  }

  .opd-grid {
    grid-template-columns: 1fr;
  }

  .opd-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .inc-img-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .placement-gallery,
  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header .container {
    height: 56px;
    padding: 0 12px;
  }

  .logo-area img {
    height: 32px;
  }

  .logo-area span {
    font-size: 0.85rem;
  }

  .logo-area small {
    display: none;
  }

  .header .btn-primary {
    padding: 7px 14px;
    font-size: 0.72rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.82rem;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat h3 {
    font-size: 1.3rem;
  }

  .hero-stat p {
    font-size: 0.72rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .campus-card {
    min-width: 240px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    padding: 20px 16px;
  }

  .hero-form-card h3 {
    font-size: 1.1rem;
  }

  .nav-links.open {
    top: 56px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .labs-grid {
    grid-template-columns: 1fr;
  }

  .opd-grid {
    grid-template-columns: 1fr;
  }

  .opd-highlights {
    grid-template-columns: 1fr;
  }

  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .placement-gallery,
  .campus-grid {
    grid-template-columns: 1fr;
  }
}