/* ============================================================
   RMSS INSTITUTE — MAIN STYLESHEET (Part 1)
   ============================================================ */

/* ---- ROOT TOKENS ---- */
:root {
  --navy:       #1A3A5C;
  --navy-dark:  #0F2340;
  --navy-light: #24507A;
  --sky:        #0EA5E9;
  --sky-light:  #38BDF8;
  --gold:       #C9A94A;
  --gold-light: #E2C06D;
  --green:      #2D7A4F;
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --gray-100:   #F1F4F8;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #1E293B;
  --text-light: #64748B;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(26,58,92,.08);
  --shadow:     0 8px 32px rgba(26,58,92,.12);
  --shadow-lg:  0 20px 60px rgba(26,58,92,.18);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-acc:   'Outfit', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- LAYOUT ---- */
.container { max-width: 1240px; margin-inline: auto; padding-inline: 1.5rem; }
.section { padding: 6rem 0; }
.mb-lg { margin-bottom: 3.5rem; }
.mt-1 { margin-top: 1.25rem; }
.mx-auto { margin-inline: auto; }
.text-center { text-align: center; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-acc); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sky);
  display: inline-block; margin-bottom: .75rem;
}
.section-label--light { color: rgba(255,255,255,.7); }
.section-label--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: .75rem;
}
.section-title--white { color: var(--white); }

.section-divider {
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  margin-bottom: 1.5rem; display: block;
}
.section-divider--gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.section-desc { color: var(--text-light); max-width: 640px; margin-inline: auto; font-size: 1.05rem; line-height: 1.8; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-acc); font-weight: 600; font-size: .95rem;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  text-align: center; justify-content: center;
}
.btn-sm  { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg  { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,92,.3); }

.btn-gold {
  background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,74,.4); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy-dark); color: rgba(255,255,255,.85);
  font-family: var(--font-acc); font-size: .78rem; padding: .5rem 0;
  position: relative; z-index: 1000;
}
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.top-bar__left  { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar__right { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.top-bar__item  { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.8); }
.top-bar__item a:hover { color: var(--gold); }
.top-bar__divider { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,.2); }
.top-bar__cta {
  background: var(--gold); color: var(--navy-dark); padding: .3rem .9rem;
  border-radius: 30px; font-weight: 700; font-size: .75rem; letter-spacing: .04em;
  transition: all var(--transition);
}
.top-bar__cta:hover { background: var(--gold-light); }
.top-bar__badge {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  padding: .2rem .7rem; border-radius: 30px; border: 1px solid rgba(255,255,255,.2);
  font-size: .72rem; white-space: nowrap;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 999; background: var(--white);
  box-shadow: 0 2px 20px rgba(26,58,92,.1);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(26,58,92,.18); }
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: .85rem; position: relative;
}

/* Logo */
.site-logo .logo-link { display: flex; align-items: center; gap: .85rem; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text__primary {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: var(--navy); letter-spacing: -.01em;
}
.logo-text__secondary { font-family: var(--font-acc); font-size: .72rem; color: var(--navy-light); font-weight: 500; }
.logo-text__location { font-family: var(--font-acc); font-size: .65rem; color: var(--gray-400); }

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  display: flex; align-items: center; gap: .25rem;
  padding: .6rem .85rem; border-radius: var(--radius-sm);
  font-family: var(--font-acc); font-size: .88rem; font-weight: 600;
  color: var(--gray-800); transition: all var(--transition); position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--navy); background: var(--gray-100); }
.nav-chevron { transition: transform var(--transition); }

/* Mega Dropdown */
.nav-item { position: relative; }
.nav-item.has-dropdown:hover .dropdown-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.dropdown-mega {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200); padding: 1.5rem; display: flex; gap: 2rem;
  min-width: 420px; opacity: 0; visibility: hidden; transition: all var(--transition);
  z-index: 100;
}
.mega-heading { font-family: var(--font-acc); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: .75rem; }
.mega-col { min-width: 160px; }
.mega-link { display: block; padding: .4rem 0; font-size: .88rem; color: var(--gray-600); border-bottom: 1px solid transparent; transition: all var(--transition); }
.mega-link:hover { color: var(--navy); padding-left: .5rem; border-bottom-color: var(--sky); }

.header-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.hamburger:hover { background: var(--gray-100); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; }
.mobile-nav-overlay.active { display: block; }

/* ---- HERO ---- */
.hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,64,.82) 0%, rgba(15,35,64,.55) 60%, rgba(14,165,233,.1) 100%); }

.hero-content {
  position: absolute; inset: 0; display: flex; align-items: center;
  padding-top: 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,169,74,.15); border: 1px solid rgba(201,169,74,.4);
  backdrop-filter: blur(8px); color: var(--gold-light);
  padding: .45rem 1.25rem; border-radius: 30px;
  font-family: var(--font-acc); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.hero-title__accent { color: var(--gold); }
.hero-subtitle { font-family: var(--font-acc); font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); margin-bottom: .5rem; font-style: italic; }
.hero-location { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges__item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.85); font-family: var(--font-acc); font-size: .82rem; }

/* Hero Controls */
.hero-controls { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 1rem; z-index: 5; }
.hero-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: white; display: flex; align-items: center; justify-content: center; transition: all var(--transition); backdrop-filter: blur(4px); }
.hero-btn:hover { background: rgba(255,255,255,.3); }
.hero-dots { display: flex; gap: .5rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); transition: all var(--transition); }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll { position: absolute; bottom: 1.5rem; right: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; font-family: var(--font-acc); }
.hero-scroll__line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5)); animation: scrollLine 1.5s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.7); } }

/* ---- HIGHLIGHTS ---- */
.highlights-strip { background: var(--navy); padding: 3rem 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.highlight-card {
  padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1);
  position: relative; transition: background var(--transition);
}
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: rgba(255,255,255,.05); }
.highlight-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.highlight-card__num { font-family: var(--font-acc); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .4rem; }
.highlight-card__label { color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.5; }
.highlight-card__label--main { font-size: .85rem; color: rgba(255,255,255,.9); font-weight: 600; }

/* ---- ABOUT ---- */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary { position: absolute; bottom: -2rem; right: -2rem; width: 45%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--white); aspect-ratio: 1; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge { position: absolute; top: -1rem; left: -1rem; background: var(--navy); color: var(--white); border-radius: var(--radius); padding: .75rem 1rem; text-align: center; box-shadow: var(--shadow); }
.about-img-badge__num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-img-badge__label { font-family: var(--font-acc); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.about-text { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0; }
.about-feature { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; font-weight: 500; color: var(--gray-800); }
.about-feature__icon { width: 22px; height: 22px; background: rgba(14,165,233,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--sky); margin-top: .1rem; }

/* ---- INSTITUTE OVERVIEW ---- */
.institute-section { position: relative; padding: 8rem 0; overflow: hidden; }
.institute-bg { position: absolute; inset: 0; }
.institute-bg img { width: 100%; height: 100%; object-fit: cover; }
.institute-bg__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,64,.92) 0%, rgba(15,35,64,.78) 100%); }
.institute-content { position: relative; z-index: 1; }
.institute-text-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 2rem 0 3rem; }
.institute-text-cols p { color: rgba(255,255,255,.8); line-height: 1.85; }
.institute-stats { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 2rem; }
.institute-stat { flex: 1; text-align: center; }
.institute-stat__num { display: block; font-family: var(--font-acc); font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.institute-stat__unit { display: block; font-size: .75rem; color: rgba(255,255,255,.5); margin: .2rem 0; }
.institute-stat__label { display: block; font-family: var(--font-acc); font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; }
.institute-stat__divider { width: 1px; height: 60px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ---- MISSION & VISION ---- */
.mv-section { background: var(--off-white); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: var(--white); border-radius: var(--radius-xl); padding: 3rem 2.5rem; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.mv-card--mission::before { background: linear-gradient(90deg, var(--sky), var(--sky-light)); }
.mv-card--vision::before  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.mv-card__icon { width: 70px; height: 70px; background: var(--off-white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--navy); }
.mv-card--vision .mv-card__icon { color: var(--gold); }
.mv-card__tag { display: inline-block; font-family: var(--font-acc); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); background: rgba(14,165,233,.1); padding: .25rem .75rem; border-radius: 20px; margin-bottom: .75rem; }
.mv-card__tag--gold { color: var(--gold); background: rgba(201,169,74,.12); }
.mv-card__title { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.mv-card__text { color: var(--text-light); line-height: 1.85; margin-bottom: 1.5rem; }
.mv-card__pillars { display: flex; gap: .5rem; flex-wrap: wrap; }
.pillar { background: var(--gray-100); color: var(--gray-600); font-family: var(--font-acc); font-size: .78rem; font-weight: 600; padding: .3rem .85rem; border-radius: 20px; border: 1px solid var(--gray-200); }

/* ---- PROGRAMS ---- */
.programs-section { background: var(--off-white); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin-inline: auto; }
.program-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card--featured { border: 2px solid var(--gold); }
.program-card__ribbon { position: absolute; top: 1.25rem; right: -2rem; background: var(--gold); color: var(--navy-dark); font-size: .72rem; font-weight: 700; padding: .3rem 2.5rem; transform: rotate(35deg); z-index: 2; font-family: var(--font-acc); letter-spacing: .06em; }
.program-card__header { padding: 2.5rem 2rem 2rem; }
.program-card__header--blue  { background: linear-gradient(135deg, var(--navy-light), var(--sky)); }
.program-card__header--navy  { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.program-card__badge { display: inline-block; background: rgba(255,255,255,.2); color: var(--white); font-family: var(--font-acc); font-size: .7rem; font-weight: 700; letter-spacing: .12em; padding: .25rem .75rem; border-radius: 20px; margin-bottom: .75rem; }
.program-card__badge--gold { background: var(--gold); color: var(--navy-dark); }
.program-card__title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.program-card__duration { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.8); font-family: var(--font-acc); font-size: .85rem; }
.program-card__body { padding: 2rem; }
.program-info { margin-bottom: 1.5rem; }
.program-info__item { display: flex; flex-direction: column; gap: .25rem; padding: .75rem 0; border-bottom: 1px solid var(--gray-100); }
.program-info__item:last-child { border-bottom: none; }
.program-info__label { font-family: var(--font-acc); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); }
.program-info__value { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }
.spec-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .25rem; }
.spec-tag { background: rgba(26,58,92,.08); color: var(--navy); font-size: .78rem; font-weight: 600; padding: .2rem .7rem; border-radius: 20px; }
.program-highlights { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.program-highlight { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-light); }
.program-highlight svg { color: var(--green); flex-shrink: 0; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-item { display: flex; align-items: flex-start; gap: .85rem; padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); background: var(--white); }
.why-item:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.why-item__title { font-family: var(--font-acc); font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.why-item__desc { font-size: .8rem; color: var(--text-light); line-height: 1.5; }

/* ---- HOSPITAL ---- */
.hospital-section { position: relative; padding: 8rem 0; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hospital-image { position: absolute; inset: 0; }
.hospital-image img { width: 100%; height: 100%; object-fit: cover; }
.hospital-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,28,50,.92) 0%, rgba(10,28,50,.7) 50%, rgba(10,28,50,.3) 100%); }
.hospital-content { position: relative; z-index: 1; max-width: 640px; }
.hospital-content p { color: rgba(255,255,255,.8); line-height: 1.85; margin-bottom: 1rem; }
.hospital-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.hospital-feature { display: flex; align-items: flex-start; gap: 1rem; }
.hospital-feature__icon { font-size: 1.75rem; flex-shrink: 0; }
.hospital-feature__title { font-family: var(--font-acc); font-weight: 700; color: var(--gold); font-size: .95rem; }
.hospital-feature__desc { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---- CLINICAL TRAINING ---- */
.clinical-section { background: var(--off-white); }
.clinical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.clinical-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.clinical-image img { width: 100%; height: 100%; object-fit: cover; }
.clinical-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 1.1rem; top: 2.8rem; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--sky), var(--gray-200)); }
.timeline-step { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-acc); font-size: .75rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(26,58,92,.1); }
.timeline-content h4 { font-family: var(--font-acc); font-weight: 700; color: var(--navy); margin-bottom: .3rem; font-size: 1rem; }
.timeline-content p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(26,58,92,.5); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ---- INSTITUTIONS ---- */
.institutions-section { background: var(--gray-100); }
.institutions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.institution-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); }
.institution-card:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-4px); }
.institution-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.institution-card__name { font-family: var(--font-acc); font-size: .85rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .35rem; }
.institution-card__type { font-size: .75rem; color: var(--sky); font-weight: 600; font-family: var(--font-acc); letter-spacing: .04em; }

/* ---- PLACEMENTS ---- */
.placements-section { background: var(--white); }
.placements-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.placements-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.5rem; }
.placement-features { display: flex; flex-direction: column; gap: .65rem; margin: 1.5rem 0; }
.placement-feature { display: flex; align-items: center; gap: .75rem; font-size: .92rem; color: var(--gray-800); }
.placement-feature__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.placement-guarantee { display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.placement-guarantee__icon { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); flex-shrink: 0; }
.placement-guarantee__title { font-family: var(--font-acc); font-weight: 700; color: var(--white); font-size: .95rem; }
.placement-guarantee__sub { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .2rem; }
.placements-logos__title { font-family: var(--font-acc); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.25rem; text-align: center; }
.placement-logos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.placement-logo-item { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 1rem .75rem; display: flex; align-items: center; justify-content: center; aspect-ratio: 2; transition: all var(--transition); }
.placement-logo-item:hover { border-color: var(--sky); background: var(--white); }
.placement-logo-placeholder { text-align: center; }
.placement-logo-placeholder span { font-family: var(--font-acc); font-size: .72rem; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ---- SCHOLARSHIP ---- */
.scholarship-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%); padding: 5rem 0; }
.scholarship-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.scholarship-icon { font-size: 3rem; margin-bottom: 1rem; }
.scholarship-content h2 { font-family: var(--font-head); font-size: clamp(1.75rem,3vw,2.5rem); color: var(--white); margin-bottom: 1rem; }
.scholarship-content p { color: rgba(255,255,255,.8); line-height: 1.85; max-width: 520px; }
.scholarship-cta { display: flex; flex-direction: column; gap: .85rem; min-width: 280px; }
.scholarship-feature { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85); font-family: var(--font-acc); font-size: .9rem; }
.scholarship-feature::before { content: '?'; width: 22px; height: 22px; border-radius: 50%; background: rgba(201,169,74,.2); border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }

/* ---- ADMISSIONS ---- */
.admissions-section { background: var(--off-white); }
.admissions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.admissions-detail { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.admissions-item { display: flex; gap: 1rem; align-items: flex-start; }
.admissions-item__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.admissions-item__label { font-family: var(--font-acc); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sky); margin-bottom: .25rem; }
.admissions-item__value { font-size: .92rem; color: var(--text-light); line-height: 1.6; }
.admissions-item__value a { color: var(--navy); font-weight: 600; }
.admissions-item__value a:hover { color: var(--sky); }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.enquiry-form-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.enquiry-form-card__header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 2rem 2.5rem; }
.enquiry-form-card__header h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); margin-bottom: .35rem; }
.enquiry-form-card__header p { color: rgba(255,255,255,.75); font-size: .9rem; }
.enquiry-form { padding: 2rem 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-acc); font-size: .8rem; font-weight: 600; color: var(--gray-600); }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem; color: var(--text); background: var(--off-white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,.12); background: var(--white); }
.form-note { text-align: center; font-size: .8rem; color: var(--gray-400); margin-top: 1rem; }
.footer-input { width: 100%; padding: .6rem .9rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); color: var(--white); font-size: .88rem; font-family: var(--font-body); outline: none; margin-bottom: .5rem; transition: border-color var(--transition); }
.footer-input:focus { border-color: var(--gold); }
.footer-input::placeholder { color: rgba(255,255,255,.4); }
.footer-select { color: rgba(255,255,255,.6); }
.footer-select option { color: var(--text); background: var(--white); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.25rem; }
.footer-logo__title { display: block; font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.footer-logo__sub { display: block; font-family: var(--font-acc); font-size: .68rem; color: rgba(255,255,255,.6); line-height: 1.4; }
.footer-about { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.footer-accreditations { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.accred-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); font-family: var(--font-acc); font-size: .65rem; font-weight: 600; letter-spacing: .06em; padding: .2rem .65rem; border-radius: 30px; }
.footer-social { display: flex; gap: .65rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all var(--transition); }
.social-link:hover { background: var(--sky); border-color: var(--sky); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-family: var(--font-acc); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: all var(--transition); display: inline-flex; align-items: center; gap: .3rem; }
.footer-links a:hover { color: var(--white); padding-left: .4rem; }
.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; color: var(--sky); }
.footer-contact-item a { color: rgba(255,255,255,.75); } 
.footer-contact-item a:hover { color: var(--gold); }
.footer-enquiry__title { font-family: var(--font-acc); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeup { animation: fadeUp .7s ease forwards; opacity: 0; }
[data-delay="0"]   { animation-delay: 0ms; }
[data-delay="100"] { animation-delay: 100ms; }
[data-delay="200"] { animation-delay: 200ms; }
[data-delay="250"] { animation-delay: 250ms; }
[data-delay="300"] { animation-delay: 300ms; }
[data-delay="400"] { animation-delay: 400ms; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-card:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .institutions-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .about-grid, .mv-grid, .programs-grid, .clinical-grid, .placements-inner, .admissions-grid, .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .institute-text-cols { grid-template-columns: 1fr; }
  .institute-stats { flex-wrap: wrap; gap: 1.5rem; }
  .institute-stat { flex: 1 1 40%; }
  .institute-stat__divider { display: none; }
  .about-img-secondary { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .institutions-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .top-bar__right { display: none; }
}
@media (max-width: 768px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh; background: var(--white); z-index: 999; box-shadow: var(--shadow-lg); flex-direction: column; justify-content: flex-start; padding: 5rem 1.5rem 2rem; transition: right var(--transition); overflow-y: auto; }
  .main-nav.open { right: 0; }
  .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: .25rem; }
  .nav-link { width: 100%; padding: .75rem 1rem; border-radius: var(--radius-sm); }
  .dropdown-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: .5rem 0 .5rem 1rem; min-width: unset; flex-direction: column; gap: 0; display: none; background: var(--off-white); border-radius: var(--radius-sm); margin-top: .25rem; }
  .nav-item.has-dropdown.open .dropdown-mega { display: flex; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .placement-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .institutions-grid { grid-template-columns: repeat(2, 1fr); }
  .scholarship-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
  .hero-scroll { display: none; }
  .top-bar { display: none; }
}
@media (max-width: 480px) {
  .programs-grid, .mv-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---- PAGE HERO (Inner Pages) ---- */
.page-hero { position: relative; padding: 7rem 0 5rem; text-align: center; color: var(--white); background: var(--navy-dark); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,64,.85) 0%, rgba(15,35,64,.7) 100%); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: .5rem; }
.page-hero__subtitle { font-family: var(--font-acc); font-size: 1.1rem; color: rgba(255,255,255,.8); font-weight: 500; }
.page-inner-content { padding: 4rem 0; }

.about-dynamic-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }

.hospital-dynamic-content p { color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }

@media (max-width: 991px) { .foundation-grid { grid-template-columns: 1fr !important; gap: 2rem !important; } }

@media (max-width: 768px) { .yoga-banner { flex-direction: column; text-align: center; padding: 1.5rem !important; } }
