/* ========================================
   GIAN SAGAR COLLEGE OF PHARMACY
   Stylesheet — v1.0
   ======================================== */

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

/* --- Custom Properties --- */
:root {
  --navy: #0B438C;
  --navy-dark: #071D35;
  --navy-light: #0D4FA3;
  --orange: #F97816;
  --orange-hover: #E06A0E;
  --orange-soft: #FFF2E5;
  --blue-light: #EDF5FC;
  --offwhite: #FAFBFC;
  --white: #FFFFFF;
  --neutral: #4B5563;
  --neutral-light: #6B7280;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(7,29,53,0.06), 0 1px 2px rgba(7,29,53,0.04);
  --shadow-md: 0 4px 16px rgba(7,29,53,0.08), 0 2px 4px rgba(7,29,53,0.04);
  --shadow-lg: 0 12px 40px rgba(7,29,53,0.10), 0 4px 12px rgba(7,29,53,0.06);
  --shadow-xl: 0 20px 60px rgba(7,29,53,0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-full: 9999px;
  --container: 1280px;
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  line-height: 1.2;
}

::selection {
  background: var(--navy);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Shared Section Styles --- */
.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--neutral);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249,120,22,0.25);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.16); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 8px 0;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(3px); }

/* --- Icon Utility --- */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-orange { background: var(--orange-soft); color: var(--orange); }
.icon-box-navy   { background: rgba(11,67,140,0.08); color: var(--navy); }


/* ============================================================
   1. TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.topbar-left .divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--orange); }

.topbar-right svg { width: 13px; height: 13px; }
.topbar-left svg  { width: 14px; height: 14px; color: var(--orange); }

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: space-between; }
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline !important; }
}


/* ============================================================
   2. HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-brand img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.header-brand-text h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
}

.header-brand-text span {
  font-size: 11px;
  color: var(--neutral-light);
  line-height: 1.3;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--blue-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.header-call:hover { color: var(--navy-dark); }
.header-call svg { width: 15px; height: 15px; }

.header-cta {
  font-size: 14px;
  padding: 10px 22px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  padding: 8px;
  color: var(--navy-dark);
  border-radius: var(--radius-xs);
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--border-light); }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-call-btn {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
}
.mobile-call-btn svg { width: 14px; height: 14px; }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--blue-light); }

.mobile-nav .mobile-nav-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .nav-links, .header-actions { display: none; }
  .menu-toggle, .mobile-call-btn { display: flex; }
  .header-brand-text { display: none; }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .header-brand-text { display: block; }
}


/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,29,53,0.92) 0%,
    rgba(7,29,53,0.78) 40%,
    rgba(7,29,53,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,120,22,0.15);
  border: 1px solid rgba(249,120,22,0.3);
  color: var(--orange-soft);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,120,22,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(249,120,22,0); }
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: rgba(191,219,254,0.85);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: rgba(191,219,254,0.9);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(191,219,254,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(191,219,254,0.8);
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(191,219,254,0.7);
}

.hero-contact svg { width: 14px; height: 14px; color: var(--orange); }

.hero-contact a {
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}
.hero-contact a:hover { color: var(--orange); }


/* ============================================================
   4. QUICK FACTS STRIP
   ============================================================ */
.quick-facts {
  position: relative;
  z-index: 10;
  margin-top: -44px;
  padding-bottom: 16px;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229,231,235,0.5);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.fact-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.fact-card .icon-box { width: 44px; height: 44px; }
.fact-card .icon-box svg { width: 22px; height: 22px; }

.fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral-light);
  margin-bottom: 4px;
}

.fact-value {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fact-card { padding: 18px; }
}


/* ============================================================
   5. ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-floating-badge li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  padding: 4px 0;
}

.about-floating-badge li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.about-text .section-desc { margin-bottom: 32px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(237,245,252,0.5);
  border: 1px solid rgba(229,231,235,0.3);
  border-radius: var(--radius-sm);
}

.about-value .icon-box { width: 40px; height: 40px; }
.about-value .icon-box svg { width: 20px; height: 20px; }

.about-value h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.about-value p {
  font-size: 13px;
  color: var(--neutral);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-floating-badge { right: 8px; bottom: -12px; }
}


/* ============================================================
   6. D.PHARM PROGRAMME
   ============================================================ */
.programme { background: rgba(237,245,252,0.4); }

.programme-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.programme-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.programme-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.programme-info-card svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  margin: 0 auto 14px;
}

.programme-info-card .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral-light);
  margin-bottom: 4px;
}

.programme-info-card .value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Eligibility Card */
.eligibility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}

.eligibility-card h3 {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.eligibility-card h3 svg { width: 22px; height: 22px; color: var(--orange); }

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--neutral);
  font-size: 15px;
}

.eligibility-list li .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: 8px;
  flex-shrink: 0;
}

.eligibility-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--orange-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--neutral);
}
.eligibility-note svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.section-cta-center {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .programme-info-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-card { padding: 24px; }
}


/* ============================================================
   7. SUBJECTS
   ============================================================ */
.subjects { background: var(--white); }

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

.subject-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229,231,235,0.3);
  transition: all var(--transition);
}

.subject-card:hover {
  border-color: rgba(11,67,140,0.15);
  box-shadow: var(--shadow-md);
}

.subject-card .icon-box {
  width: 40px;
  height: 40px;
  transition: background var(--transition);
}
.subject-card .icon-box svg { width: 20px; height: 20px; transition: color var(--transition); }

.subject-card:hover .icon-box { background: var(--orange-soft); }
.subject-card:hover .icon-box svg { color: var(--orange); }

.subject-card span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
}

@media (max-width: 768px) {
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .subjects-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   8. HIGHLIGHTS (Dark)
   ============================================================ */
.highlights {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 40px 40px;
}

.highlights .section-label { color: var(--orange); }
.highlights .section-title { color: var(--white); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.highlight-card:hover { background: rgba(255,255,255,0.08); }

.highlight-card .icon-box {
  background: rgba(249,120,22,0.12);
  margin-bottom: 18px;
  transition: background var(--transition);
}
.highlight-card:hover .icon-box { background: rgba(249,120,22,0.2); }
.highlight-card .icon-box svg { width: 24px; height: 24px; color: var(--orange); }

.highlight-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 13px;
  color: rgba(156,163,175,0.85);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   9. FACILITIES
   ============================================================ */
.facilities { background: var(--white); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.facility-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(229,231,235,0.4);
  transition: all var(--transition);
}
.facility-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,67,140,0.12);
}

.facility-card .icon-box {
  margin-bottom: 18px;
  transition: background var(--transition);
}
.facility-card:hover .icon-box { background: var(--orange-soft); }
.facility-card:hover .icon-box svg { color: var(--orange); }

.facility-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 14px;
  color: var(--neutral);
  line-height: 1.6;
}

.facilities-campus-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.facilities-campus-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-campus-image img { height: 220px; }
}
@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   10. CAREER SCOPE
   ============================================================ */
.careers { background: rgba(237,245,252,0.4); }

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.career-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
}

.career-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.career-col-header .icon-box { width: 40px; height: 40px; }
.career-col-header .icon-box svg { width: 20px; height: 20px; }

.career-col-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.career-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--neutral);
}

.career-list li .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.career-list .bullet-navy { background: var(--navy); }
.career-list .bullet-orange { background: var(--orange); }

.career-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin: 32px auto 0;
  padding: 14px 16px;
  background: rgba(255,242,229,0.6);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--neutral);
}
.career-disclaimer svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) {
  .careers-grid { grid-template-columns: 1fr; }
  .career-col { padding: 24px; }
}


/* ============================================================
   11. WHY CHOOSE
   ============================================================ */
.why-choose { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.why-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,0.4);
  background: var(--offwhite);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }

.why-card svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color var(--transition);
}
.why-card:hover svg { color: var(--orange); }

.why-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.5;
}

.quote-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy-dark);
  border-radius: 20px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.quote-card .quote-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 64px;
  height: 64px;
  color: var(--orange);
  opacity: 0.1;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   12. ADMISSION PROCESS
   ============================================================ */
.admission-process { background: rgba(237,245,252,0.4); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.5;
}

.step-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -16px;
  color: var(--border);
  font-size: 22px;
  transform: translateY(-50%);
}

@media (min-width: 1025px) {
  .step-arrow { display: block; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   13. ADMISSION CTA
   ============================================================ */
.admission-cta {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.admission-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,120,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.admission-cta .content {
  position: relative;
  z-index: 1;
}

.admission-cta .section-label { color: var(--orange); }

.admission-cta .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,120,22,0.15);
  border: 1px solid rgba(249,120,22,0.3);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.admission-cta .cta-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.admission-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.admission-cta .desc {
  font-size: 17px;
  color: rgba(209,213,219,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
}


/* ============================================================
   14. CONTACT & LOCATION
   ============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(229,231,235,0.5);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.contact-card h3 svg { width: 22px; height: 22px; color: var(--navy); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: var(--neutral);
  line-height: 1.5;
}

.contact-item a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--orange); }

.contact-registration {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--neutral-light);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.contact-map iframe {
  flex: 1;
  min-height: 320px;
  border: 0;
  width: 100%;
}

.contact-map-footer {
  padding: 14px 20px;
  background: var(--offwhite);
}

.contact-map-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-map-footer a:hover { color: var(--orange); }
.contact-map-footer svg { width: 15px; height: 15px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   15. ENQUIRY FORM
   ============================================================ */
.enquiry { background: rgba(237,245,252,0.4); }

.enquiry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.form-group label .req { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-dark);
  background: var(--white);
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,67,140,0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
  background: rgba(254,242,242,0.3);
}

.error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-msg { display: block; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.form-checkbox span {
  font-size: 14px;
  color: var(--neutral);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-submit svg { width: 18px; height: 18px; }

/* Success State */
.form-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.form-success.show { display: block; }
.form-success.show + form { display: none; }

.form-success svg { width: 56px; height: 56px; color: #22c55e; margin: 0 auto 20px; }

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--neutral);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-card { padding: 24px; }
}


/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(156,163,175,0.85);
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xs);
}

.footer-brand h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

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

.footer-about .foundation {
  font-size: 12px;
  color: rgba(107,114,128,0.8);
}

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-list a,
.footer-contact-list p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--orange); }
.footer-contact-list svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-address svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(107,114,128,0.7);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(249,120,22,0.35);
  transition: all var(--transition);
  animation: badgePulse 2.5s ease-in-out infinite;
}
.floating-call:hover { background: var(--orange-hover); transform: scale(1.05); }
.floating-call svg { width: 24px; height: 24px; }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-dark); }
.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .floating-call { display: flex; }
  .back-to-top { bottom: 92px; }
}

@media (min-width: 769px) {
  .back-to-top { bottom: 32px; right: 32px; }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/* --- Page Banner --- */
.page-banner {
  position: relative;
  background: var(--navy-dark);
  padding: 100px 0 64px;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,120,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, 40%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(191,219,254,0.6);
  margin-bottom: 20px;
}

.page-banner .breadcrumb a {
  color: rgba(191,219,254,0.6);
  transition: color var(--transition);
}
.page-banner .breadcrumb a:hover { color: var(--orange); }

.page-banner .breadcrumb .sep { color: rgba(191,219,254,0.3); }

.page-banner .breadcrumb .current { color: var(--orange); font-weight: 600; }

.page-banner h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-banner .banner-desc {
  font-size: 17px;
  color: rgba(191,219,254,0.7);
  max-width: 580px;
  line-height: 1.7;
}

.page-banner .banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-banner .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(191,219,254,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.page-banner .tag svg { width: 14px; height: 14px; color: var(--orange); }


/* --- Inner Page Nav (active state) --- */
.nav-links a.active {
  color: var(--navy);
  background: var(--blue-light);
  font-weight: 600;
}


/* --- About Page Sections --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-intro-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-intro-text .section-desc {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* --- Vision / Mission Cards --- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.vm-card.vision::before { background: var(--navy); }
.vm-card.mission::before { background: var(--orange); }

.vm-card .vm-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card.vision .vm-icon { background: rgba(11,67,140,0.08); color: var(--navy); }
.vm-card.mission .vm-icon { background: var(--orange-soft); color: var(--orange); }
.vm-card .vm-icon svg { width: 26px; height: 26px; }

.vm-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.vm-card p {
  font-size: 15px;
  color: var(--neutral);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 28px 24px; }
}


/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.value-card .v-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--blue-light);
  color: var(--navy);
  transition: all var(--transition);
}
.value-card:hover .v-icon { background: var(--orange-soft); color: var(--orange); }
.value-card .v-icon svg { width: 24px; height: 24px; }

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}


/* --- Approval Strip --- */
.approval-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.approval-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.approval-card .a-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--navy);
}
.approval-card .a-icon svg { width: 24px; height: 24px; }

.approval-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.approval-card p {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .approval-strip { grid-template-columns: 1fr; }
}


/* --- Foundation Section --- */
.foundation-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.foundation-block .f-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.foundation-block .f-logo svg { width: 32px; height: 32px; }


/* --- D.Pharm Page Specifics --- */
.prog-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 768px) {
  .prog-overview-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* --- Semester Breakdown --- */
.semester-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.semester-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.semester-card .sem-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.semester-card .sem-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.semester-card .sem-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.semester-card .sem-header span {
  font-size: 12px;
  color: var(--neutral-light);
}

.semester-card .sem-subjects li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--neutral);
  border-bottom: 1px solid var(--border-light);
}

.semester-card .sem-subjects li:last-child { border-bottom: none; }

.semester-card .sem-subjects li .s-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sem-dot-1 { background: var(--navy); }
.sem-dot-2 { background: var(--orange); }
.sem-dot-3 { background: #059669; }
.sem-dot-4 { background: #7c3aed; }

@media (max-width: 640px) {
  .semester-grid { grid-template-columns: 1fr; }
}


/* --- Learning Approach --- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.approach-card {
  padding: 28px 24px;
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,0.4);
  transition: all var(--transition);
  text-align: center;
}
.approach-card:hover { box-shadow: var(--shadow-md); border-color: rgba(11,67,140,0.12); }

.approach-card .ap-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11,67,140,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.approach-card:hover .ap-icon { background: var(--orange-soft); color: var(--orange); }
.approach-card .ap-icon svg { width: 24px; height: 24px; }

.approach-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.approach-card p {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .approach-grid { grid-template-columns: 1fr; }
}


/* --- Scope Two-Column Section --- */
.scope-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.scope-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.scope-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scope-col h3 svg { width: 22px; height: 22px; color: var(--orange); }

.scope-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--neutral);
}

.scope-col li .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .scope-content { grid-template-columns: 1fr; }
  .scope-col { padding: 24px; }
}


/* --- Inline CTA Banner (inner page) --- */
.inner-cta {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 0;
}

.inner-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,120,22,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.inner-cta .content { position: relative; z-index: 1; }

.inner-cta h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.inner-cta p {
  font-size: 16px;
  color: rgba(209,213,219,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.inner-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 480px) {
  .inner-cta .cta-buttons { flex-direction: column; align-items: stretch; }
}


/* --- Campus Gallery Grid --- */
.campus-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.campus-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .campus-visual img { height: 240px; }
}


/* --- Info Note Box --- */
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--orange-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--neutral);
  max-width: 700px;
  margin: 32px auto 0;
  line-height: 1.6;
}

.info-note svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}


/* --- Programme Stats Row --- */
.prog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.prog-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.prog-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.prog-stat .stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-light);
}

@media (max-width: 640px) {
  .prog-stats { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   APPLY FORM PAGE STYLES
   ============================================================ */
.apply-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 28px;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-title:first-child { margin-top: 0; }

.form-section-title svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.apply-form-card .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
  display: block;
}

.apply-form-card .form-group label .req { color: #ef4444; }

.apply-form-card .form-group input,
.apply-form-card .form-group select,
.apply-form-card .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-dark);
  background: var(--white);
  transition: all var(--transition);
}

.apply-form-card .form-group input:focus,
.apply-form-card .form-group select:focus,
.apply-form-card .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,67,140,0.1);
}

.apply-form-card .form-group input::placeholder,
.apply-form-card .form-group textarea::placeholder { color: #9ca3af; }

.apply-form-card .form-group.error input,
.apply-form-card .form-group.error select,
.apply-form-card .form-group.error textarea {
  border-color: #ef4444;
  background: rgba(254,242,242,0.3);
}

.apply-form-card .error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 3px;
  display: none;
}

.apply-form-card .form-group.error .error-msg { display: block; }

.prefilled-field {
  background: var(--blue-light) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  cursor: default;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  cursor: pointer;
}

.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.form-consent span { font-size: 14px; color: var(--neutral); }

.apply-submit { width: 100%; padding: 16px; font-size: 16px; margin-top: 8px; }

/* Alert Messages */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.alert-success svg { color: #22c55e; }

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.alert-error svg { color: #ef4444; }

/* Contact page form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-card .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
  display: block;
}
.contact-form-card .form-group label .req { color: #ef4444; }

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-dark);
  background: var(--white);
  transition: all var(--transition);
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,67,140,0.1);
}

.contact-form-card .form-group.error input,
.contact-form-card .form-group.error textarea {
  border-color: #ef4444;
}

@media (max-width: 640px) {
  .form-row, .form-row.triple { grid-template-columns: 1fr; }
  .apply-form-card { padding: 24px; }
  .contact-form-card { padding: 24px; }
}


/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

/* --- Global Mobile Spacing --- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { margin-bottom: 12px; }
  .section-desc { font-size: 15px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
}

/* --- Mobile Header & Logo --- */
@media (max-width: 1024px) {
  .header-brand img {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-brand img {
    width: 160px;
    height: auto;
  }
  .header-brand {
    gap: 8px;
  }
  .mobile-call-btn {
    padding: 7px 12px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .header-brand img {
    width: 130px;
  }
}

/* --- Mobile Top Bar --- */
@media (max-width: 480px) {
  .topbar .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar-right a {
    font-size: 11px;
    gap: 4px;
  }
  .topbar-right { gap: 12px; }
}

/* --- Mobile Nav Overlay Fix --- */
@media (max-width: 1024px) {
  .mobile-nav {
    top: 56px;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    top: 52px;
    padding: 16px;
  }
  .mobile-nav a {
    font-size: 15px;
    padding: 12px 14px;
  }
}

/* --- Mobile Hero --- */
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }
  .hero-content {
    padding: 48px 0 56px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .hero-trust {
    gap: 6px 14px;
    margin-bottom: 24px;
  }
  .hero-trust span {
    font-size: 12px;
  }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-contact {
    font-size: 13px;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(7,29,53,0.92) 0%,
      rgba(7,29,53,0.82) 50%,
      rgba(7,29,53,0.6) 100%
    );
  }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 15px; }
}

/* --- Mobile Quick Facts --- */
@media (max-width: 768px) {
  .quick-facts { margin-top: -32px; }
  .quick-facts-grid { gap: 10px; }
  .fact-card {
    padding: 14px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fact-card .icon-box { width: 36px; height: 36px; }
  .fact-card .icon-box svg { width: 18px; height: 18px; }
  .fact-label { font-size: 10px; margin-bottom: 2px; }
  .fact-value { font-size: 13px; }
}

/* --- Mobile About Section --- */
@media (max-width: 768px) {
  .about-grid { gap: 28px; }
  .about-image-wrap img {
    border-radius: 16px;
  }
  .about-floating-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -20px;
    margin-left: 16px;
    margin-right: 16px;
    box-shadow: var(--shadow-md);
  }
  .about-values { gap: 8px; }
  .about-value { padding: 12px; }
  .about-value .icon-box { width: 36px; height: 36px; }
  .about-value h4 { font-size: 13px; }
  .about-value p { font-size: 12px; }
}

/* --- Mobile Programme Section --- */
@media (max-width: 768px) {
  .programme-info-grid { gap: 10px; }
  .programme-info-card { padding: 18px 14px; }
  .programme-info-card svg { width: 26px; height: 26px; margin-bottom: 10px; }
  .programme-info-card .label { font-size: 10px; }
  .programme-info-card .value { font-size: 14px; }
  .eligibility-card { padding: 20px; }
  .eligibility-card h3 { font-size: 17px; }
  .eligibility-list li { font-size: 14px; padding: 6px 0; }
}

/* --- Mobile Subjects --- */
@media (max-width: 480px) {
  .subject-card {
    padding: 14px 16px;
    gap: 10px;
  }
  .subject-card .icon-box { width: 36px; height: 36px; }
  .subject-card span { font-size: 13px; }
}

/* --- Mobile Highlights --- */
@media (max-width: 768px) {
  .highlights-grid { gap: 12px; }
  .highlight-card { padding: 20px 18px; }
  .highlight-card .icon-box { width: 40px; height: 40px; margin-bottom: 12px; }
  .highlight-card .icon-box svg { width: 20px; height: 20px; }
  .highlight-card h3 { font-size: 14px; }
  .highlight-card p { font-size: 12px; }
}

/* --- Mobile Facilities --- */
@media (max-width: 768px) {
  .facilities-grid { gap: 12px; }
  .facility-card { padding: 20px 18px; }
  .facility-card .icon-box { width: 40px; height: 40px; margin-bottom: 14px; }
  .facility-card h3 { font-size: 15px; }
  .facility-card p { font-size: 13px; }
}

/* --- Mobile Careers --- */
@media (max-width: 768px) {
  .career-col { padding: 20px; }
  .career-col-header h3 { font-size: 15px; }
  .career-list li { font-size: 13px; padding: 5px 0; }
  .career-disclaimer { font-size: 12px; padding: 12px 14px; }
}

/* --- Mobile Why Choose --- */
@media (max-width: 768px) {
  .why-card { padding: 18px; }
  .why-card svg { width: 22px; height: 22px; margin-bottom: 10px; }
  .why-card h3 { font-size: 13px; }
  .why-card p { font-size: 12px; }
  .quote-card { padding: 24px 20px; }
  .quote-card blockquote { font-size: 15px; }
}

/* --- Mobile Steps --- */
@media (max-width: 768px) {
  .step-card { padding: 20px 16px; }
  .step-number { width: 44px; height: 44px; font-size: 18px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 12px; }
}

/* --- Mobile CTA Sections --- */
@media (max-width: 640px) {
  .admission-cta { padding: 56px 0; }
  .admission-cta h2 { font-size: 24px; }
  .admission-cta .desc { font-size: 14px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* --- Mobile Contact Section --- */
@media (max-width: 768px) {
  .contact-card { padding: 20px; }
  .contact-card h3 { font-size: 17px; margin-bottom: 20px; }
  .contact-item { margin-bottom: 16px; }
  .contact-map iframe { min-height: 250px; }
}

/* --- Mobile Enquiry Form --- */
@media (max-width: 768px) {
  .enquiry-card { padding: 20px; }
  .form-grid { gap: 12px; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents iOS zoom */
  }
  .form-submit { padding: 14px; }
}

/* --- Mobile Footer --- */
@media (max-width: 768px) {
  .footer-main { padding: 40px 0; }
  .footer-grid { gap: 28px; }
  .footer-brand img { width: 40px; height: 40px; }
  .footer-brand h3 { font-size: 13px; }
  .footer-about p { font-size: 12px; }
  .footer h4 { font-size: 12px; margin-bottom: 12px; }
  .footer-links a { font-size: 13px; }
  .footer-contact-list a { font-size: 12px; }
  .footer-address { font-size: 12px; }
  .footer-bottom .container { padding: 16px; font-size: 11px; }
}

/* --- Mobile Page Banner (inner pages) --- */
@media (max-width: 768px) {
  .page-banner { padding: 72px 0 44px; }
  .page-banner h1 { font-size: 28px; }
  .page-banner .banner-desc { font-size: 14px; }
  .page-banner .breadcrumb { font-size: 12px; margin-bottom: 14px; }
  .page-banner .banner-tags { gap: 6px; margin-top: 16px; }
  .page-banner .tag { font-size: 11px; padding: 4px 10px; }
}

@media (max-width: 400px) {
  .page-banner { padding: 64px 0 36px; }
  .page-banner h1 { font-size: 24px; }
}

/* --- Mobile Inner CTA --- */
@media (max-width: 768px) {
  .inner-cta { padding: 48px 0; }
  .inner-cta h2 { font-size: 22px; }
  .inner-cta p { font-size: 14px; }
}

/* --- Mobile Values Grid --- */
@media (max-width: 768px) {
  .values-grid { gap: 10px; }
  .value-card { padding: 20px 16px; }
  .value-card .v-icon { width: 44px; height: 44px; }
  .value-card h4 { font-size: 14px; }
  .value-card p { font-size: 12px; }
}

/* --- Mobile VM Cards --- */
@media (max-width: 640px) {
  .vm-card { padding: 24px 20px; }
  .vm-card h3 { font-size: 18px; }
  .vm-card p { font-size: 14px; }
}

/* --- Mobile Approval Cards --- */
@media (max-width: 768px) {
  .approval-card { padding: 20px 16px; }
  .approval-card h4 { font-size: 14px; }
  .approval-card p { font-size: 12px; }
}

/* --- Mobile Semester Grid --- */
@media (max-width: 640px) {
  .semester-card { padding: 20px; }
  .semester-card .sem-subjects li { font-size: 13px; padding: 6px 0; }
}

/* --- Mobile Scope Section --- */
@media (max-width: 640px) {
  .scope-col { padding: 20px; }
  .scope-col h3 { font-size: 16px; }
  .scope-col li { font-size: 13px; }
}

/* --- Mobile Prog Stats --- */
@media (max-width: 480px) {
  .prog-stats { gap: 10px; }
  .prog-stat { padding: 16px 10px; }
  .prog-stat .stat-value { font-size: 22px; }
  .prog-stat .stat-label { font-size: 10px; }
}

/* --- Mobile About Intro Grid --- */
@media (max-width: 768px) {
  .about-intro-grid { gap: 28px; }
  .about-intro-image { border-radius: 16px; }
  .about-intro-text .section-desc { font-size: 14px; margin-bottom: 16px; }
}

/* --- Prevent Horizontal Overflow --- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
}

/* --- iOS Input Zoom Prevention --- */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* --- Mobile Touch Target Size --- */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .topbar-right a {
    min-height: 36px;
    display: flex;
    align-items: center;
  }
}

/* --- Active Nav State --- */
.nav-links a.active {
  color: var(--navy);
  background: var(--blue-light);
  font-weight: 600;
}
