/* ===================================================
   ONLINE MBA COURSE PAGE — LPU Online University
   =================================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.header.sticky { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img { height: 50px; width: auto; }
.header__nav { flex: 1; display: flex; justify-content: center; }
.header__menu { display: flex; gap: 30px; align-items: center; }
.header__menu-link {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
  padding: 8px 0;
  cursor: pointer;
}
.header__menu-link:hover, .header__menu-link.text-highlight { color: #e8740c; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8740c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s;
}
.btn-phone:hover { background: #d06500; }
.btn-phone i { font-size: 16px; }
.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.active { visibility: visible; opacity: 1; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.mobile-menu__panel {
  position: absolute;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s;
  padding: 60px 20px 20px;
}
.mobile-menu.active .mobile-menu__panel { right: 0; }
.mobile-menu__close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}
.mobile-menu__item { border-bottom: 1px solid #f0f0f0; }
.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
}
.mobile-menu__link:hover, .mobile-menu__link.text-highlight { color: #e8740c; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 10px 0;
  padding-top: 78px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}
.breadcrumb__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumb__item a { color: #e8740c; }
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item--active { color: #666; }
.breadcrumb__item + .breadcrumb__item::before { content: '>'; margin-right: 8px; color: #999; }

/* ========== HERO SECTION ========== */
.hero-section { position: relative; background: #f5f7fa; }
.hero-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e0;
  color: #e8740c;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid #ffd08a;
}
.hero-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  color: #111;
  margin-bottom: 14px;
}
.hero-title strong { font-weight: 800; display: block; }
.hero-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  max-width: 600px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat__value {
  font-size: 26px;
  font-weight: 800;
  color: #e8740c;
  line-height: 1;
}
.hero-stat__label { font-size: 12px; color: #666; margin-top: 4px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8740c, #f5a623);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,116,12,0.35); color: #fff; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #e8740c;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #e8740c;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { background: #fff3e0; }
.hero-accreditations { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-accreditations__label { font-size: 12px; color: #999; width: 100%; }
.accred-logo { height: 36px; width: auto; object-fit: contain; filter: grayscale(30%); }

/* ========== SPECIALIZATIONS SECTION ========== */
.specializations-section { padding: 30px 0 60px; background: #fff; }
.specializations-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.specializations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.specialization-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f0 100%);
  border: 1px solid #f1dfca;
  border-radius: 16px;
  padding: 22px 18px;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 30px rgba(232, 116, 12, 0.06);
}
.specialization-card:hover {
  transform: translateY(-4px);
  border-color: #e8740c;
  box-shadow: 0 12px 30px rgba(232, 116, 12, 0.12);
}
.specialization-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff3e0;
  color: #e8740c;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.specialization-card__title {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.specialization-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 14px;
}
.specialization-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #e8740c;
}
.specializations-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  background: #fffaf5;
  border: 1px solid #f3dec9;
  padding: 16px 18px;
  border-radius: 12px;
}

/* Hero Form */
.hero-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border-top: 4px solid #e8740c;
  position: sticky;
  top: 80px;
}
.hero-form__title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  text-align: center;
}
.hero-form__subtitle { font-size: 13px; color: #888; text-align: center; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  color: #333;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: #e8740c; }
.form-group--phone { display: flex; gap: 0; }
.form-group--phone select {
  width: 95px;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: #f9f9f9;
}
.form-group--phone input { flex: 1; border-radius: 0 8px 8px 0; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e8740c, #f5a623);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,116,12,0.4); }
.form-note { font-size: 11px; color: #aaa; text-align: center; margin-top: 10px; }
.fee-badge {
  background: #f0fff4;
  border: 1px solid #b7ebc9;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  text-align: center;
}
.fee-badge__amount { font-size: 22px; font-weight: 800; color: #27ae60; }
.fee-badge__label { font-size: 12px; color: #555; }
.fee-badge__original { font-size: 12px; color: #999; text-decoration: line-through; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8740c;
  margin-bottom: 10px;
}
.section-header__title {
  font-size: 30px;
  font-weight: 300;
  color: #111;
  line-height: 1.3;
}
.section-header__title strong { font-weight: 800; }
.section-header__title::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #e8740c;
  margin: 0 auto 10px;
}
.section-header--left { text-align: left; }
.section-header--left .section-header__title::before { margin: 0 0 10px 0; }

/* ========== WHY CHOOSE SECTION ========== */
.why-section { padding: 56px 0; background: #f4f4f4; }
.why-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 28px;
  align-items: center;
}
.why-heading {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: #2d2f36;
  margin-bottom: 22px;
}
.why-heading span {
  font-weight: 400;
  border-bottom: 4px solid #e8740c;
  padding-bottom: 2px;
}
.why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.why-item:last-child { margin-bottom: 0; }
.why-item__num {
  font-size: 84px;
  line-height: 0.84;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #f3b786;
  text-stroke: 1px #f3b786;
}
.why-item__title {
  font-size: 17px;
  font-weight: 800;
  color: #2d2f36;
  margin-bottom: 4px;
}
.why-item__desc {
  font-size: 15px;
  line-height: 1.5;
  color: #2d2f36;
}
.why-right img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

/* ========== USPS SECTION ========== */
.usps-section { padding: 56px 0 44px; background: #f4f4f4; }
.usps-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.usps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.usps-heading {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  color: #2d2f36;
}
.usps-heading span {
  font-weight: 400;
  border-bottom: 4px solid #e8740c;
  padding-bottom: 2px;
}
.usps-nav { display: flex; gap: 10px; }
.usps-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 0;
  border: 1px solid #e4e4e4;
  background: #f2f2ee;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #111;
}
.usps-nav-btn.active,
.usps-nav-btn:hover { background: #e8740c; border-color: #e8740c; color: #fff; }
.usps-slider-wrap { overflow: hidden; }
.usps-slider { display: flex; gap: 16px; transition: transform 0.4s ease; }
.usps-card {
  flex: 0 0 calc(25% - 12px);
  background: #f7f7f7;
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid #eadfda;
  box-shadow: 0 2px 10px rgba(232, 116, 12, 0.2);
  min-height: 170px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.usps-card:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(232, 116, 12, 0.25); }
.usps-card__title { font-size: 15px; font-weight: 700; color: #3e3e3e; margin-bottom: 20px; }
.usps-card__desc { font-size: 12px; color: #4a4a4a; line-height: 1.45; }

/* ========== CURRICULUM SECTION ========== */
.curriculum-section { padding: 44px 0 34px; background: #f4f4f4; }
.curriculum-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.curriculum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.curriculum-heading {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  color: #2d2f36;
}
.curriculum-heading span {
  font-weight: 400;
  border-bottom: 4px solid #e8740c;
  padding-bottom: 2px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f38820;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-download i { display: none; }
.btn-download:hover { background: #d97411; }

/* Curriculum Stats */
.curriculum-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  margin-bottom: 34px;
}
.curr-stat {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  text-align: center;
}
.curr-stat__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f38820;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curr-stat__img { width: 31px; height: 31px; object-fit: contain; filter: brightness(0) invert(1); }
.curr-stat__number { font-size: 25px; font-weight: 500; color: #1f3552; line-height: 1;margin-top: 4px; }
.curr-stat__label { font-size: 12px; color: #1f3552; margin-top: 2px; line-height: 1.4; max-width: 170px; }

/* Semester Accordion */
.semester-accordion { display: flex; flex-direction: column; gap: 0; }
.semester-item { border: 1px solid #e5e5e5; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.semester-item__header {
  padding: 16px 20px;
  background: #f9f9f9;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}
.semester-item__header:hover { background: #f0f0f0; }
.semester-item.open .semester-item__header { background: #fff3e0; }
.semester-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.semester-item__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.semester-item__icon::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #666;
  line-height: 1;
}
.semester-item.open .semester-item__icon { background: #e8740c; }
.semester-item.open .semester-item__icon::after { content: '−'; color: #fff; }
.semester-item__body { display: none; padding: 16px 20px; background: #fff; }
.semester-item.open .semester-item__body { display: block; }
.semester-item__courses li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px dashed #f0f0f0;
  line-height: 1.5;
}
.semester-item__courses li:last-child { border-bottom: none; }
.curriculum-note { font-size: 12px; color: #aaa; margin-top: 20px; font-style: italic; }

/* ========== FACULTY SECTION ========== */
.faculty-section { padding: 60px 0; background: #fafafa; }
.faculty-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.faculty-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.faculty-title { font-weight: 300; font-size: 28px; color: #333; }
.faculty-title-bold { font-weight: 800; font-size: 28px; color: #111; }
.faculty-nav { display: flex; gap: 10px; }
.faculty-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #555;
}
.faculty-nav-btn.active,
.faculty-nav-btn:hover { background: #e8740c; border-color: #e8740c; color: #fff; }
.faculty-slider-wrapper { overflow: hidden; }
.faculty-slider { display: flex; gap: 24px; transition: transform 0.4s ease; }
.faculty-card {
  flex: 0 0 calc(25% - 18px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.faculty-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.faculty-card__image { width: 100%; aspect-ratio: 1; overflow: hidden; background: #f0f0f0; }
.faculty-card__image img { width: 100%; height: 100%; object-fit: cover; }
.faculty-card__info { padding: 16px; }
.faculty-card__name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
.faculty-card__role { font-size: 12px; color: #e8740c; font-weight: 600; margin-bottom: 6px; }
.faculty-card__subject { font-size: 13px; color: #666; }

/* ========== JOB OPPORTUNITIES ========== */
.jobs-section { padding: 60px 0; background: #fff; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.job-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 4px solid #e8740c;
  transition: box-shadow 0.3s, transform 0.3s;
}
.job-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-4px); }
.job-card__count { font-size: 32px; font-weight: 800; color: #e8740c; margin-bottom: 6px; }
.job-card__title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 12px; }
.job-card__detail { font-size: 13px; color: #666; line-height: 1.7; }
.job-card__detail strong { color: #444; }
.jobs-disclaimer { font-size: 11px; color: #aaa; margin-top: 20px; font-style: italic; }

/* ========== TOPPERS SECTION ========== */
.toppers-section { padding: 60px 0; background: #fafafa; }
.toppers-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.toppers-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}
.toppers-section__subtitle { font-size: 14px; color: #888; margin-bottom: 28px; }
.toppers-section__nav { display: flex; gap: 8px; }
.toppers-slider-wrap { overflow: hidden; position: relative; }
.toppers-slider { display: flex; gap: 24px; transition: transform 0.4s ease; }
.topper-card {
  flex: 0 0 calc(25% - 18px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  padding: 24px 16px 20px;
  transition: transform 0.3s;
}
.topper-card:hover { transform: translateY(-4px); }
.topper-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: #f5f5f5;
}
.topper-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.topper-card__name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.topper-card__gpa { font-size: 14px; color: #e8740c; font-weight: 600; margin-bottom: 10px; }
.topper-card__program-label { font-size: 12px; color: #aaa; margin-bottom: 2px; }
.topper-card__program { font-size: 13px; color: #555; margin-bottom: 6px; line-height: 1.4; }
.topper-card__batch { font-size: 12px; color: #888; }
.toppers-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}
.toppers-nav-btn img { width: 16px; height: 16px; }
.toppers-nav-btn:hover { background: #e8740c; border-color: #e8740c; }
.toppers-nav-btn:hover img { filter: brightness(0) invert(1); }

/* ========== HIRING PARTNERS SECTION ========== */
.hiring-partners-section { padding: 50px 0; background: #fff; }
.hiring-partners__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hiring-partners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.hiring-slider-wrap { overflow: hidden; }
.hiring-slider { display: flex; transition: transform 0.4s ease; }
.hiring-slide { flex: 0 0 100%; }
.hiring-slide img { width: 100%; height: auto; display: block; }

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section { padding: 60px 0; background: #fff; }
.testimonials-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 24px;
  border-left: 4px solid #e8740c;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 60px;
  color: #ffd08a;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card__text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 14px; font-weight: 700; color: #111; }
.testimonial-card__program { font-size: 12px; color: #888; }

/* ========== DEGREE SECTION ========== */
.degree-section { padding: 60px 0; background: #fafafa; }
.degree-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.degree-grid { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; }
.degree-points { list-style: none; padding: 0; margin-top: 20px; }
.degree-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.degree-points li:last-child { border-bottom: none; }
.degree-points li i { color: #e8740c; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.degree-img { border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }

/* ========== PLACEMENT SECTION ========== */
.placement-section { padding: 60px 0; background: #fff; }
.placement-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.placement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.placement-img { border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.placement-content__desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 28px; }
.recruiter-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.recruiter-logo { height: 36px; width: auto; object-fit: contain; filter: grayscale(20%); opacity: 0.8; transition: opacity 0.3s; }
.recruiter-logo:hover { opacity: 1; filter: none; }

/* ========== LMS SECTION ========== */
.lms-section { padding: 60px 0; background: #fafafa; }
.lms-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.lms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lms-feature {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lms-feature:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.lms-feature__img { width: 100%; border-radius: 10px; margin-bottom: 16px; aspect-ratio: 16/9; object-fit: cover; }
.lms-feature__title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.lms-feature__desc { font-size: 13px; color: #666; line-height: 1.6; }

/* ========== ADMISSION PROCESS ========== */
.admission-section { padding: 60px 0; background: #fff; }
.admission-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}
.admission-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #ffd08a;
}
.admission-step { text-align: center; position: relative; }
.admission-step__num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #e8740c, #f5a623);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.admission-step__title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 8px; }
.admission-step__desc { font-size: 13px; color: #666; line-height: 1.5; }

/* ========== FAQ SECTION ========== */
.faq-section { padding: 60px 0; background: #fafafa; }
.faq-section__inner { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.faq-list { margin-top: 36px; }
.faq-item { border-radius: 10px; overflow: hidden; margin-bottom: 10px; border: 1px solid #eee; }
.faq-item__question {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.3s;
}
.faq-item__question:hover { background: #fff3e0; }
.faq-item[open] .faq-item__question { background: #fff3e0; color: #e8740c; }
.faq-item__question::after { content: '+'; font-size: 22px; color: #e8740c; font-weight: 300; }
.faq-item[open] .faq-item__question::after { content: '−'; }
.faq-item__answer { padding: 16px 20px; background: #fff; border-top: 1px solid #f0f0f0; }
.faq-item__answer p { font-size: 14px; color: #555; line-height: 1.7; }

/* ========== FOOTER ========== */
.footer { background: #2d2f36; color: #d4d5d6; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 50px 20px 20px; }
.footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 52px; width: auto; }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-row { display: flex; gap: 30px; }
.footer__contact-item { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; }
.footer__contact-item i { color: #e8740c; font-size: 20px; margin-top: 2px; }
.footer__contact-item strong { color: #fff; display: block; margin-bottom: 2px; }
.footer__contact-item p { color: #bbb; line-height: 1.5; }
.footer__contact-item a { color: #bbb; transition: color 0.3s; }
.footer__contact-item a:hover { color: #e8740c; }
.footer__contact-note { font-size: 12px; color: #888; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #888;
}
.footer__copyright { margin: 0; color: #888; }
.footer__bottom-links { display: flex; align-items: center; gap: 8px; }
.footer__bottom-links a { color: #888; transition: color 0.3s; }
.footer__bottom-links a:hover { color: #e8740c; }
.footer__bottom-links span { color: #666; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: opacity 0.3s;
}
.footer__social a:hover { opacity: 0.85; }

/* ========== POPUP OVERLAY ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-form {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-form__header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #e8740c, #f5a623);
  border-radius: 16px 16px 0 0;
}
.popup-form__header h3 { font-size: 18px; font-weight: 700; color: #fff; }
.popup-form__close {
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form__body { padding: 24px; }
.popup-form__submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e8740c, #f5a623);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.popup-form__submit:hover { transform: translateY(-2px); }
.popup-form__success { text-align: center; padding: 30px 0; }
.popup-form__success i { font-size: 56px; color: #27ae60; display: block; margin-bottom: 14px; }
.popup-form__success h4 { font-size: 22px; color: #333; margin-bottom: 10px; }
.popup-form__success p { font-size: 15px; color: #666; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-section__inner { grid-template-columns: 1fr; }
  .hero-form-wrap { position: static; }
  .specializations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section__inner { grid-template-columns: 1fr; gap: 18px; }
  .why-right img { margin: 0 auto; max-width: 480px; }
  .why-heading { font-size: 34px; }
  .curriculum-stats { grid-template-columns: repeat(3, 1fr); }
  .usps-heading,
  .curriculum-heading { font-size: 34px; }
  .usps-card__title { font-size: 26px; }
  .faculty-card { flex: 0 0 calc(50% - 12px); }
  .usps-card { flex: 0 0 calc(50% - 12px); }
  .degree-grid { grid-template-columns: 1fr; }
  .placement-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .topper-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__toggle { display: block; }
  .hero-title { font-size: 26px; }
  .specializations-grid { grid-template-columns: 1fr; }
  .why-heading { font-size: 30px; }
  .why-item { grid-template-columns: 42px 1fr; }
  .why-item__num { font-size: 64px; }
  .why-item__title { font-size: 18px; }
  .curriculum-stats { grid-template-columns: repeat(2, 1fr); }
  .usps-heading,
  .curriculum-heading { font-size: 28px; }
  .usps-nav-btn { width: 44px; height: 44px; font-size: 18px; }
  .usps-card { min-height: auto; }
  .usps-card__title { font-size: 24px; }
  .usps-card__desc { font-size: 14px; }
  .curr-stat__number { font-size: 30px; }
  .curr-stat__label { font-size: 13px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lms-grid { grid-template-columns: 1fr; }
  .admission-steps { grid-template-columns: repeat(2, 1fr); }
  .admission-steps::before { display: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .topper-card { flex: 0 0 calc(50% - 12px); }
  .section-header__title { font-size: 24px; }
  .usps-card { flex: 0 0 calc(100%); }
}

@media (max-width: 480px) {
  .hero-stats { gap: 14px; }
  .hero-actions { flex-direction: column; }
  .why-heading { font-size: 23px; }
  .why-item__title { font-size: 17px; }
  .why-item__desc { font-size: 14px; }
  .why-item__num { font-size: 52px; }
  .curriculum-stats { grid-template-columns: 1fr 1fr; }
  .usps-heading,
  .curriculum-heading { font-size: 23px; }
  .btn-download { width: 100%; justify-content: center; }
  .curriculum-stats { gap: 18px; }
  .curr-stat__badge { width: 56px; height: 56px; }
  .curr-stat__img { width: 28px; height: 28px; }
  .curr-stat__number { font-size: 26px; }
  .curr-stat__label { font-size: 12px; max-width: 130px; }
  .admission-steps { grid-template-columns: 1fr; }
  .footer__contact-row { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .topper-card { flex: 0 0 100%; }
  .faculty-card { flex: 0 0 100%; }
}
