/* ============================================
   VIDHYASHRAM COLLEGE OF PHARMACY
   Theme: Cream/beige · Dark olive · Maroon · Orange
   ============================================ */

:root {
  /* Theme colors from prospectus + logo */
  --cream: #f5efe1;
  --cream-light: #faf6ec;
  --cream-dark: #ebe2cb;

  --olive: #4a5638;
  --olive-dark: #353f29;
  --olive-light: #6b7a52;

  --maroon: #6b2d2d;
  --maroon-dark: #4a1f1f;
  --brown: #5a3a2a;

  --orange: #e8842d;
  --orange-dark: #cf6f1c;
  --orange-light: #f4a55a;

  --white: #ffffff;
  --gray: #6b6357;
  --gray-light: #ada79a;
  --gray-bg: #f9f5ec;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(74, 86, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 86, 56, 0.10);
  --shadow-lg: 0 16px 48px rgba(74, 86, 56, 0.14);
  --shadow-card: 0 10px 30px -10px rgba(107, 45, 45, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1800px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  background: rgba(232, 132, 45, 0.10);
  border-radius: 100px;
  margin-bottom: 1rem;
}

.eyebrow.light { color: var(--orange-light); background: rgba(232, 132, 45, 0.18); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--cream); }
.accent { color: var(--orange); font-style: italic; }
.accent-light { color: var(--orange-light); font-style: italic; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(245, 239, 225, 0.75); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* SECTIONS */
.section {
  padding: 6rem 0;
  position: relative;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--orange);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar i { color: var(--orange-light); margin-right: 6px; }
.topbar a:hover { color: var(--orange-light); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--cream-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 1px solid rgba(107, 45, 45, 0.08);
}

.navbar.scrolled {
  background: rgba(250, 246, 236, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--orange);
  padding: 3px;
  background: white;
  transition: var(--transition);
}

.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

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

.nav-link {
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--brown);
  border-radius: 8px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
  color: var(--maroon);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 50%;
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(232, 132, 45, 0.3);
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 132, 45, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 132, 45, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 132, 45, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 239, 225, 0.5);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--maroon);
  border-color: var(--cream);
  transform: translateY(-3px);
}

/* ============================================
   HERO — Original Dark Theme, ENHANCED
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

/* Background image with parallax-like zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
  filter: brightness(0.95) saturate(1.1);
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.15); }
}

/* Rich gradient overlay - olive to maroon with vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(232, 132, 45, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(107, 45, 45, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, rgba(53, 63, 41, 0.94) 0%, rgba(74, 86, 56, 0.85) 45%, rgba(107, 45, 45, 0.78) 100%);
}

/* Subtle film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Floating glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: glowDrift 20s ease-in-out infinite;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  opacity: 0.2;
  animation: glowDrift 25s ease-in-out infinite reverse;
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}

/* Corner decorative accents */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--orange);
  z-index: 3;
  opacity: 0.7;
}

.corner-tl {
  top: 130px;
  left: 60px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
  animation: cornerFade 1s ease 1.2s both;
}

.corner-br {
  bottom: 100px;
  right: 60px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
  animation: cornerFade 1s ease 1.4s both;
}

@keyframes cornerFade {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 0.7; transform: scale(1); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem 40px;
  margin-left: 0;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced badge with pulse */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 18px;
  background: rgba(245, 239, 225, 0.08);
  border: 1px solid rgba(245, 239, 225, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 225, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.badge-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-badge i {
  color: var(--orange-light);
  font-size: 0.85rem;
}

/* MASSIVE Enhanced Title */
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  color: var(--cream);
  margin-bottom: 1.4rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > * {
  display: inline-block;
  animation: titleSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.title-line:nth-child(1) > * { animation-delay: 0.2s; }
.title-line:nth-child(2) > * { animation-delay: 0.35s; }

@keyframes titleSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-title .accent {
  color: var(--orange);
  font-style: italic;
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both,
             gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.accent-line {
  position: relative;
  padding-bottom: 12px;
}

.title-underline {
  display: block;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 100px;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(232, 132, 45, 0.5);
  animation: underlineGrow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 120px; }
}

/* Decorated subheading */
.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--orange-light);
  margin-bottom: 1.4rem;
  font-weight: 500;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.sub-deco {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange-light));
  display: inline-block;
}

.sub-deco:last-child {
  background: linear-gradient(90deg, var(--orange-light), transparent);
}

.hero-desc {
  font-size: 1.08rem;
  max-width: 580px;
  color: rgba(245, 239, 225, 0.85);
  margin-bottom: 2.6rem;
  line-height: 1.75;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* Enhanced primary button with shine */
.hero .btn-primary {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
}

.hero .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero .btn-primary:hover::before {
  left: 100%;
}

.hero .btn-primary i {
  transition: transform 0.3s ease;
}

.hero .btn-primary:hover i {
  transform: translateX(4px);
}

.hero .btn-outline {
  padding: 16px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 239, 225, 0.08);
}

/* Premium stats bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.6rem 2.2rem;
  background: rgba(245, 239, 225, 0.06);
  border: 1px solid rgba(245, 239, 225, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 100px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-num small {
  font-size: 1.1rem;
  opacity: 0.85;
}

.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.7);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 225, 0.3), transparent);
}

/* Scroll down indicator - enhanced */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245, 239, 225, 0.7);
}

.scroll-arrow {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(245, 239, 225, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  position: relative;
  animation: bounceDown 2s infinite;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0;
  animation: scrollRipple 2s ease-out infinite;
}

@keyframes scrollRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

/* ============================================
   HIGHLIGHTS STRIP
   ============================================ */
.highlights {
  background: var(--cream-light);
  padding: 3rem 0;
  position: relative;
  margin-top: -60px;
  z-index: 5;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.hl-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px;
}

.hl-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: 14px;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(232, 132, 45, 0.25);
}

.hl-card h4 {
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 2px;
}
.hl-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: var(--transition);
}
.about-image:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(232, 132, 45, 0.4);
}
.about-badge .big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge span:not(.big) {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text .eyebrow { margin-bottom: 1rem; }
.about-text .section-title { text-align: left; }
.about-text .lead {
  font-size: 1.02rem;
  color: var(--gray);
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
}

.vm-cards {
  display: grid;
  gap: 1.5rem;
}

.vm-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vm-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--olive);
  border-radius: 12px;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.vm-card p { color: var(--gray); font-size: 0.94rem; }

.mission-list { display: grid; gap: 10px; }
.mission-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray);
  align-items: flex-start;
}
.mission-list i { color: var(--olive); margin-top: 5px; font-size: 0.75rem; }

/* ============================================
   COURSE
   ============================================ */
.course { background: var(--cream-light); }

.course-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.course-left {
  padding: 3rem;
  background: var(--white);
}

.course-tag {
  display: inline-block;
  background: rgba(232, 132, 45, 0.12);
  color: var(--orange-dark);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.course-left h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-desc {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.course-meta {
  display: grid;
  gap: 18px;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--cream-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
}

.meta-item i {
  font-size: 1.3rem;
  color: var(--orange);
  width: 28px;
  text-align: center;
}

.meta-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.meta-item strong {
  display: block;
  color: var(--maroon);
  font-size: 1rem;
  margin-top: 2px;
}

.course-right {
  padding: 3rem;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: var(--cream);
}

.course-right h4 {
  color: var(--orange-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-right p {
  color: rgba(245, 239, 225, 0.85);
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.elig-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.elig-tags span {
  padding: 6px 14px;
  background: rgba(245, 239, 225, 0.12);
  border: 1px solid rgba(245, 239, 225, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
}

.learn-list { display: grid; gap: 10px; }
.learn-list li {
  font-size: 0.92rem;
  color: rgba(245, 239, 225, 0.9);
  padding-left: 22px;
  position: relative;
}
.learn-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--orange-light);
  font-size: 0.78rem;
}

/* ============================================
   ADMISSION
   ============================================ */
.admission {
  background: var(--olive-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.admission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 132, 45, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(107, 45, 45, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.timeline-step {
  background: rgba(245, 239, 225, 0.04);
  border: 1px solid rgba(245, 239, 225, 0.1);
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.timeline-step:hover {
  background: rgba(245, 239, 225, 0.08);
  transform: translateY(-6px);
  border-color: var(--orange);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}

.step-content h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.88rem;
  color: rgba(245, 239, 225, 0.7);
  line-height: 1.55;
}

.docs-card {
  background: rgba(245, 239, 225, 0.05);
  border: 1px solid rgba(245, 239, 225, 0.12);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.docs-card h3 {
  color: var(--orange-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.doc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: rgba(245, 239, 225, 0.88);
}

.doc-item i {
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   CAREER
   ============================================ */
.career { background: var(--cream); }

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.career-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}
.career-card:hover::before { transform: scaleX(1); }

.career-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--maroon);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.career-card:hover .career-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.career-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--maroon);
}

.career-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   FEES
   ============================================ */
.fees { background: var(--cream-light); }

.fee-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fee-table th {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 20px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fee-table th:first-child { padding-left: 28px; }
.fee-table th:last-child { padding-right: 28px; }

.fee-table td {
  padding: 22px 18px;
  font-size: 1rem;
  color: var(--brown);
  border-bottom: 1px solid var(--cream-dark);
}

.fee-table td:first-child { padding-left: 28px; color: var(--gray); }
.fee-table td:last-child { padding-right: 28px; }

.fee-table tr:last-child td { border-bottom: none; }

.highlight-cell {
  background: rgba(232, 132, 45, 0.10);
  color: var(--maroon) !important;
  font-weight: 700;
  font-size: 1.1rem !important;
}

.fee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: rgba(232, 132, 45, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--brown);
}
.fee-note i { color: var(--orange); }

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(53, 63, 41, 0.95), transparent);
  padding: 1.5rem;
  color: var(--cream);
}

.gallery-overlay h4 {
  color: var(--cream);
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--orange-light);
  font-size: 0.88rem;
}

.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.placeholder-1 { background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%); color: var(--cream); }
.placeholder-2 { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: var(--cream); }
.placeholder-3 { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: var(--white); }
.placeholder-4 { background: linear-gradient(135deg, var(--brown) 0%, var(--maroon) 100%); color: var(--cream); }
.placeholder-5 { background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%); color: var(--cream); }

.placeholder-content i {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

.placeholder-content h4 {
  color: inherit;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.placeholder-content p {
  font-size: 0.86rem;
  opacity: 0.85;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info { display: grid; gap: 1.2rem; align-content: start; }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}

.info-card:hover {
  transform: translateX(6px);
  border-color: var(--orange);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--orange-dark);
  border-radius: 12px;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.info-card p, .info-card a {
  font-size: 0.94rem;
  color: var(--gray);
  line-height: 1.6;
}

.info-card a:hover { color: var(--orange-dark); }

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--brown);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 132, 45, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 24px;
}

.form-status.success { color: var(--olive); }
.form-status.error { color: var(--maroon); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--olive-dark);
  color: rgba(245, 239, 225, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.footer-logo-row img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  border: 2px solid var(--orange);
}

.footer-logo-row h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.1;
}
.footer-logo-row span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: rgba(245, 239, 225, 0.68);
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 239, 225, 0.08);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--cream);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.footer-col ul { display: grid; gap: 10px; }

.footer-col a {
  font-size: 0.92rem;
  color: rgba(245, 239, 225, 0.7);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--orange-light);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(245, 239, 225, 0.7);
  line-height: 1.6;
}

.footer-contact i {
  color: var(--orange-light);
  margin-top: 5px;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(245, 239, 225, 0.6);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(232, 132, 45, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-5px);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 2px; }
  .nav-link { padding: 10px 12px; font-size: 0.88rem; }

  .hero-content { padding: 5rem 0 4rem 30px; }
  .corner-tl, .corner-br { width: 60px; height: 60px; }
  .corner-tl { top: 110px; left: 20px; }
  .corner-br { bottom: 80px; right: 20px; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .section { padding: 4rem 0; }

  .topbar { font-size: 0.78rem; }
  .topbar-left { gap: 14px; }
  .topbar-left span:nth-child(2) { display: none; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    flex-direction: column;
    padding: 1.5rem;
    gap: 8px;
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link { padding: 12px 16px; width: 100%; font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 8px 16px 0; text-align: center; justify-content: center; width: calc(100% - 32px); }

  .brand-name { font-size: 1.15rem; }
  .brand-sub { font-size: 0.65rem; }
  .brand-logo { width: 48px; height: 48px; }

  .hero { min-height: auto; padding: 4rem 0 5rem; }
  .hero-content { padding: 3rem 0 2rem 20px; }
  .hero-stats { padding: 1.3rem 1.5rem; gap: 1.4rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-divider { height: 36px; }
  .corner-tl, .corner-br { display: none; }
  .glow-1, .glow-2 { width: 300px; height: 300px; }
  .scroll-down { display: none; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }

  .highlights-grid { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; }

  .course-left, .course-right { padding: 2rem; }

  .timeline { grid-template-columns: 1fr; }

  .docs-card { padding: 1.8rem; }
  .docs-grid { grid-template-columns: 1fr; }

  .career-grid { grid-template-columns: 1fr; }

  .fee-table thead { display: none; }
  .fee-table, .fee-table tbody, .fee-table tr, .fee-table td { display: block; width: 100%; }
  .fee-table tr {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  .fee-table td {
    padding: 12px 18px !important;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .fee-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--olive);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .fee-table td:last-child { border-bottom: none; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item { min-height: 220px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .back-to-top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .topbar-left span:first-child { font-size: 0.72rem; }
  .topbar-right { gap: 14px; }

  .hero-title { font-size: 2.4rem; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px 7px 12px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 130px; padding: 13px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 0.8rem 1.2rem; width: 100%; }
  .stat { min-width: 80px; }

  .section-title { font-size: 1.7rem; }
  .course-left h3 { font-size: 1.5rem; }
}
