/* ── 1. VARIABLES ── */
:root {
  --blue: #0a1f5c;
  --blue2: #1a3a8f;
  --blue3: #2563eb;
  --bluelt: #dbeafe;
  --yellow: #f5c518;
  --ydark: #d4a014;
  --ylight: #fef9e7;
  --white: #ffffff;
  --off: #f8fafc;
  --g100: #f1f5f9;
  --g300: #cbd5e1;
  --g500: #64748b;
  --g700: #334155;
  --g900: #0f172a;
  --sh1: 0 2px 8px rgba(0, 0, 0, .08);
  --sh2: 0 8px 30px rgba(10, 31, 92, .14);
  --sh3: 0 20px 60px rgba(10, 31, 92, .20);
  --r: 16px;
  --r2: 8px;
  --tr: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── 2. RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;

}

body {
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  color: var(--g900);
  background: #fff
}

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

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

ul {
  list-style: none
}

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

input,
select,
textarea {
  font-family: inherit
}

.no-scroll {
  overflow: hidden !important
}

/* ── 3. LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.loader-inner img {
  width: 100px;
  margin-bottom: 14px;
  animation: pulse 1.2s ease-in-out infinite
}

.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px
}

.loader-brand span {
  color: var(--yellow)
}

.loader-sub {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
  letter-spacing: .6px;
  text-transform: uppercase
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, .2);
  border-radius: 99px;
  overflow: hidden
}

.loader-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 99px;
  animation: fill 1.9s ease forwards
}

@keyframes fill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .45
  }
}

/* ── 4. TOP BAR ── */
.top-bar {
  background: var(--blue);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: 7px 0;
  position: relative;
  z-index: 999
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px
}

.top-social {
  display: flex;
  align-items: center;
  gap: 2px
}

.top-social span {
  color: rgba(255, 255, 255, .45);
  font-size: .73rem;
  margin-right: 8px
}

.top-social a {
  color: rgba(255, 255, 255, .65);
  padding: 5px 7px;
  font-size: .95rem;
  transition: color .2s, transform .2s
}

.top-social a:hover {
  color: var(--yellow);
  transform: translateY(-2px)
}

.top-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.top-info a {
  color: rgba(255, 255, 255, .78);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s
}

.top-info a:hover {
  color: var(--yellow)
}

.top-info i {
  font-size: .72rem
}

/* ── 5. NAVBAR (STICKY) ── */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--g100);
  transition: box-shadow var(--tr), background var(--tr);
}

.navbar.scrolled {
  box-shadow: var(--sh2);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue);
  line-height: 1.1
}

.logo-text span {
  color: var(--blue3)
}

.logo-sub {
  font-size: .56rem;
  color: var(--g500);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 1px
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: var(--r2);
  color: var(--g700);
  font-weight: 500;
  font-size: .81rem;
  transition: all .22s;
  white-space: nowrap
}

.nav-link i {
  font-size: .72rem;
  color: var(--blue3)
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue3);
  background: var(--bluelt)
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue3), var(--blue2)) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--r2) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .28)
}

.nav-cta i {
  color: #fff !important
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .42) !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r2);
  transition: background .2s
}

.hamburger:hover {
  background: var(--g100)
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 99px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ── 6. MOBILE DRAWER ── */
.mob-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 82vw);
  height: 100dvh;
  background: var(--blue);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right .38s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .4);
}

.mob-drawer.open {
  right: 0
}

.mob-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px);
}

.mob-backdrop.show {
  opacity: 1;
  visibility: visible
}

.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

.mob-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff
}

.mob-brand span {
  color: var(--yellow)
}

.mob-close {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}

.mob-close:hover {
  background: rgba(255, 255, 255, .22)
}

.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
  border-left: 3px solid transparent;
}

.mob-link i {
  width: 18px;
  text-align: center;
  color: var(--yellow);
  font-size: .85rem;
  flex-shrink: 0
}

.mob-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-left-color: var(--yellow)
}

.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 10px 14px;
  padding: 13px;
  background: linear-gradient(135deg, var(--yellow), var(--ydark));
  color: var(--blue);
  font-weight: 700;
  border-radius: var(--r2);
  font-size: .9rem;
  transition: all .3s;
  flex-shrink: 0;
}

.mob-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 197, 24, .4)
}

.mob-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

.mob-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  transition: all .2s;
}

.mob-socials a:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-2px)
}

/* ── 7. CONTAINER / SECTION ── */
.container {
  width: 100%;

  margin: 0 auto;
  padding: 0 20px
}

section {
  padding: 84px 0
}

/* ── 8. SHARED SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 52px
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bluelt);
  color: var(--blue3);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 11px;
  line-height: 1.2
}

.sec-title span {
  color: var(--blue3)
}

.sec-sub {
  color: var(--g500);
  font-size: .94rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7
}
.sec2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 11px;
  line-height: 1.2
}

.sec2-title span {
  color: var(--yellow)
}

.sec2-sub {
  color: var(--white);
  font-size: .94rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 13px
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 52px;
  height: 2px;
  background: var(--g300);
  border-radius: 99px
}

.divider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow)
}

/* ── 9. SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.slide-left {
  transform: translateX(-36px)
}

.reveal.slide-right {
  transform: translateX(36px)
}

.reveal.revealed {
  opacity: 1;
  transform: none
}

/* ── 10. HERO ── */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

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

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 31, 92, .88), rgba(26, 58, 143, .80), rgba(10, 31, 92, .87))
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1
}

.o1 {
  width: 460px;
  height: 460px;
  background: rgba(37, 99, 235, .32);
  top: -90px;
  right: -70px;
  animation: floatY 8s ease-in-out infinite
}

.o2 {
  width: 270px;
  height: 270px;
  background: rgba(245, 197, 24, .18);
  bottom: -40px;
  left: 4%;
  animation: floatY 11s ease-in-out infinite reverse
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-26px)
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 197, 24, .18);
  border: 1px solid rgba(245, 197, 24, .38);
  color: var(--yellow);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 20px;
  animation: fadeUp .8s ease both
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
  animation: fadeUp .9s .1s ease both
}

.hl {
  color: var(--yellow)
}

.hero-typing {
  font-size: 1rem;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 16px;
  font-weight: 500;
  min-height: 1.6rem;
  animation: fadeUp 1s .15s ease both
}

#typingText {
  color: var(--yellow);
  font-weight: 700
}

.cursor {
  display: inline-block;
  width: 2px;
  height: .95em;
  background: var(--yellow);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink .75s step-end infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-sub {
  font-size: .97rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.72;
  margin-bottom: 30px;
  animation: fadeUp 1s .2s ease both
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--ydark));
  color: var(--blue);
  padding: 12px 26px;
  border-radius: var(--r2);
  font-weight: 700;
  font-size: .92rem;
  transition: all .3s;
  box-shadow: 0 6px 18px rgba(245, 197, 24, .38);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(245, 197, 24, .5)
}

.btn-secondary {
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .38);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--r2);
  font-weight: 600;
  font-size: .92rem;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(6px)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px)
}

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 38px;
  animation: fadeUp 1s .4s ease both
}

.hstat {
  text-align: center
}

.hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--yellow)
}

.hstat-l {
  font-size: .7rem;
  color: rgba(255, 255, 255, .58);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 2px
}

.hero-visual {
  position: relative;
  animation: fadeUp 1s .2s ease both
}

.hero-card {
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  box-shadow: var(--sh3)
}

.hc-emoji {
  font-size: 2.6rem;
  margin-bottom: 9px
}

.hc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 7px
}

.hc-text {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  line-height: 1.6
}

.hfc {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: var(--sh3);
  display: flex;
  align-items: center;
  gap: 10px
}

.fc1 {
  left: -24px;
  animation: floatY 6s ease-in-out infinite
}

.fc2 {
  top: -30px;
  right: -16px;
  animation: floatY 7s ease-in-out infinite reverse
}

.fc-ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem
}

.fc-ic.blue {
  background: var(--bluelt);
  color: var(--blue3)
}

.fc-ic.yellow {
  background: var(--ylight);
  color: var(--ydark)
}

.fc-n {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue)
}

.fc-l {
  font-size: .69rem;
  color: var(--g500);
  font-weight: 500
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── 11. ABOUT ── */
.about {
  background: var(--off)
}

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

.about-img-wrap {
  position: relative
}

.about-img-wrap>img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover
}

.about-cap {
  text-align: center;
  margin-top: 9px;
  font-size: .8rem;
  color: var(--g500)
}

.about-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 12px;
  padding: 13px 17px;
  font-weight: 700;
  box-shadow: var(--sh2);
  text-align: center
}

.abn {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  display: block;
  line-height: 1.1
}

.abt {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 13px;
  line-height: 1.25
}

.about-text h2 span {
  color: var(--blue3)
}

.about-text>p {
  color: var(--g500);
  line-height: 1.8;
  margin-bottom: 22px
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 22px
}

.ac {
  background: #fff;
  border-radius: var(--r2);
  padding: 17px;
  box-shadow: var(--sh1);
  border-left: 4px solid var(--blue3);
  transition: transform .3s, box-shadow .3s
}

.ac:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2)
}

.ac i {
  font-size: 1.35rem;
  color: var(--blue3);
  margin-bottom: 8px;
  display: block
}

.ac h4 {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
  font-size: .87rem
}

.ac p {
  font-size: .79rem;
  color: var(--g500);
  line-height: 1.6
}

.quote-block {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: var(--r2);
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.quote-block::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, .08);
  position: absolute;
  top: -6px;
  left: 8px;
  line-height: 1;
  pointer-events: none
}

.quote-block p {
  font-size: .92rem;
  line-height: 1.72;
  font-style: italic;
  position: relative
}

.quote-block cite {
  display: block;
  margin-top: 8px;
  font-size: .8rem;
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
  position: relative
}

/* ── 12. COUNTERS ── */
/* ── COUNTERS / STATS BAND ── */
.counters {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 13, 255, 0.39), rgba(20, 51, 187, 0.78)),
    url(./images/campus1.jpeg);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cc {
  text-align: left;
  padding: 20px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.cc:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.25);
}

/* Orange blob icon */
.cc-icon {
  width: 90px;
  height: 90px;
  background: #f7941d;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  box-shadow: 0 6px 24px rgba(247,148,29,.45);
  transition: border-radius .6s ease, transform .3s ease;
  animation: blobMorph 6s ease-in-out infinite;
}

.cc-icon::after {
  content: '';
  position: absolute;
  bottom: -6px; right: -6px;
  width: 36px; height: 36px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  opacity: .55;
}

@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  33%      { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  66%      { border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%; }
}

.cc:hover .cc-icon {
  transform: translateY(-4px) scale(1.06);
}

.cc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.cc-num span {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
}

.cc-lbl {
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .2px
}

/* ── 13. WHY CHOOSE US ── */
.whyus {
  background: var(--off)
}

/* Why Slider */
.why-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px
}

.why-slider {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.wcard {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: var(--sh1);
  border: 1px solid var(--g100);
  text-align: center;
  flex: 0 0 calc(25% - 15px);
  min-width: 0
}

.wcard-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bluelt), #bfdbfe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--blue3)
}

.wcard h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .96rem;
  margin-bottom: 9px
}

.wcard p {
  font-size: .82rem;
  color: var(--g500);
  line-height: 1.65
}

/* Controls */
.why-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px
}

.why-counter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  white-space: nowrap;
  min-width: 56px
}

.why-progress-wrap {
  flex: 1;
  height: 3px;
  background: var(--g100);
  border-radius: 99px;
  overflow: hidden
}

.why-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 99px;
  transition: width .5s ease;
  width: 0%
}

.why-btns {
  display: flex;
  gap: 10px
}

.why-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.why-btn:hover {
  background: var(--blue3)
}

/* keep benefits-bar */
.benefits-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: var(--r);
  padding: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center
}

.bitem {
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px
}

.bitem i {
  color: var(--yellow);
  font-size: .9rem
}

/* ── 14. FILTER SECTION ── */
.courses-section {
  background: #fff
}

.filter-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 26px;
  align-items: start;
  padding-left: 30px;
  padding-right: 30px;
}

/* panel */
.filter-panel {
  background: var(--off);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh1);
  position: sticky;
  top: 82px;
  border: 1px solid var(--g100)
}

.fp-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bluelt);
  display: flex;
  align-items: center;
  gap: 7px
}

.fp-title i {
  color: var(--blue3)
}

.fg {
  margin-bottom: 14px
}

.fg label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .71rem;
  font-weight: 700;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 6px
}

.fg label i {
  color: var(--blue3)
}

.fs {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--g300);
  border-radius: var(--r2);
  font-size: .86rem;
  color: var(--g700);
  background: #fff;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2364748b' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center
}

.fs:focus {
  border-color: var(--blue3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .09)
}

.fp-reset {
  width: 100%;
  padding: 10px;
  background: var(--g100);
  color: var(--g700);
  border-radius: var(--r2);
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  cursor: pointer
}

.fp-reset:hover {
  background: var(--g300)
}

.fp-count {
  background: var(--bluelt);
  border-radius: var(--r2);
  padding: 7px 10px;
  font-size: .78rem;
  color: var(--blue2);
  font-weight: 600;
  margin-top: 10px;
  display: none;
  text-align: center
}

/* scrollable results */
.filter-results {
  max-height: 95vh;
  overflow-y: auto;
  scroll-behavior: smooth
}

.filter-results::-webkit-scrollbar {
  width: 5px
}

.filter-results::-webkit-scrollbar-track {
  background: var(--g100);
  border-radius: 99px
}

.filter-results::-webkit-scrollbar-thumb {
  background: var(--blue3);
  border-radius: 99px
}

/* zone group headers */
.zg {
  margin-bottom: 30px
}

.zg-head {
  border-radius: var(--r2);
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .96rem;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 5
}

.zg-head span {
  margin-left: auto;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  opacity: .8
}

.zg-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue2))
}

.zg-orange {
  background: linear-gradient(135deg, #d97706, #f59e0b)
}

.zg-green {
  background: linear-gradient(135deg, #059669, #10b981)
}

.zg-purple {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6)
}

/* college cards */
.fcc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px
}

.fcc {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
  border: 1px solid var(--g100);
  cursor: pointer;
  transition: all .3s
}

.fcc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--bluelt)
}

.fcc-img {
  height: 116px;
  background: linear-gradient(135deg, var(--bluelt), var(--blue3));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.fcc-img>img:not(.fcc-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.fcc-logo {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15)
}

.fcc-dist {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(10, 31, 92, .82);
  color: #fff;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 700
}

.fcc-body {
  padding: 13px
}

.fcc-name {
  font-weight: 700;
  color: var(--blue);
  font-size: .85rem;
  margin-bottom: 4px;
  line-height: 1.3
}

.fcc-loc {
  color: var(--g500);
  font-size: .73rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px
}

.fcc-loc i {
  color: var(--blue3);
  font-size: .66rem
}

.fcc-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 9px
}

.fcc-tags span {
  background: var(--bluelt);
  color: var(--blue3);
  padding: 2px 7px;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 600
}

.fcc-apply {
  width: 100%;
  padding: 7px;
  background: linear-gradient(135deg, var(--blue3), var(--blue2));
  color: #fff;
  border-radius: var(--r2);
  font-size: .78rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer
}

.fcc-apply:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, .28)
}

.no-results {
  text-align: center;
  padding: 52px;
  color: var(--g500)
}

.no-results i {
  font-size: 2.6rem;
  color: var(--g300);
  display: block;
  margin-bottom: 10px
}

/* ── 15. PARTNER COLLEGES MARQUEE ── */
.partners-section {
  background: var(--off)
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 20px
}

.mq-fade-l,
.mq-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none
}

.mq-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--off), transparent)
}

.mq-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--off), transparent)
}

.mq-row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollL 120s linear infinite;
  padding: 6px 0
}

.mq-rev {
  animation-name: scrollR;
  animation-duration: 190s;
  margin-top: 12px
}

.mq-row3 {
  animation-duration: 90s;
  margin-top: 12px
}

.pc-name {
  font-size: 11px;
  color: var(--g500);
  text-align: center;
  margin-top: 8px;
  line-height: 1.3;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.mq-row:hover {
  animation-play-state: paused
}

@keyframes scrollL {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

@keyframes scrollR {
  from { transform: translateX(-50%) }
  to   { transform: translateX(0) }
}

/* partner card */
.pc {
  background: #fff;
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--sh1);
  border: 1.5px solid var(--g100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: all .3s;
  min-width: 190px;
  max-width: 210px;
  flex-shrink: 0
}

.pc:hover {
  border-color: var(--blue3);
  box-shadow: var(--sh2);
  transform: translateY(-4px)
}

.pc-logo {
  width: 100%;
  height: 100px;
  border-radius: var(--r2);
  background: transparent;
  align-content: center;
  overflow: hidden;
}

.pc-logo img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gallery-sec {
  background: #050148
}

/* Stacked Gallery Slider */
.gslider-wrap {
  position: relative;
  overflow: hidden;
  padding: 30px 0 50px
}

.gslider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 360px;
  perspective: 1200px
}

.gs-card {
  position: absolute;
  width: 52%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(10, 31, 92, .22);
  cursor: pointer;
  transition: all .65s cubic-bezier(.4, 0, .2, 1);
  background: var(--blue)
}

.gs-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.gs-card:hover img {
  transform: scale(1.04)
}

.gs-caption {
  background: rgba(10, 31, 92, .85);
  color: #fff;
  padding: 13px 18px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em
}

/* Positions: centre=active, ±1=side, ±2=far */
.gs-card[data-pos="0"] {
  transform: translateX(0) scale(1);
  z-index: 10;
  filter: brightness(1);
  opacity: 1
}

.gs-card[data-pos="1"] {
  transform: translateX(58%) scale(.82);
  z-index: 6;
  filter: brightness(.6);
  opacity: .85
}

.gs-card[data-pos="-1"] {
  transform: translateX(-58%) scale(.82);
  z-index: 6;
  filter: brightness(.6);
  opacity: .85
}

.gs-card[data-pos="2"] {
  transform: translateX(90%) scale(.68);
  z-index: 3;
  filter: brightness(.35);
  opacity: .6
}

.gs-card[data-pos="-2"] {
  transform: translateX(-90%) scale(.68);
  z-index: 3;
  filter: brightness(.35);
  opacity: .6
}

.gs-card[data-pos="hide"] {
  opacity: 0;
  pointer-events: none;
  z-index: 0
}

/* Dots */
.gs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px
}

.gs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g300);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0
}

.gs-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 99px
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  padding: 20px
}

.lightbox.open {
  opacity: 1;
  visibility: visible
}

.lightbox #lbImg {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--r);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .8);
  object-fit: contain
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  border: none
}

.lb-close:hover {
  background: rgba(255, 255, 255, .24)
}

/* ── 17. REGISTRATION FORM ── */
.register-section {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  position: relative;
  overflow: hidden
}

.register-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: rgba(245, 197, 24, .05);
  border-radius: 50%;
  pointer-events: none
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1
}

.reg-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25
}

.reg-info>p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: .93rem
}

.rb {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px
}

.rb-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(245, 197, 24, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: .95rem;
  flex-shrink: 0
}

.rb h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
  font-size: .88rem
}

.rb p {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.55
}

/* form card */
.form-card {
  background: #fff;
  border-radius: var(--r);
  padding: 36px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .24)
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px
}

.college-notice {
  background: var(--bluelt);
  border-radius: var(--r2);
  padding: 9px 13px;
  font-size: .84rem;
  color: var(--blue2);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.college-notice i {
  color: var(--blue3)
}

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

.fg2 {
  margin-bottom: 16px
}

.fg2.full {
  grid-column: 1/-1
}

.fg2 label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--g700);
  margin-bottom: 5px
}

.fg2 label i {
  color: var(--blue3);
  font-size: .76rem
}

.fg2 input,
.fg2 select,
.fg2 textarea {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid var(--g300);
  border-radius: var(--r2);
  font-size: .88rem;
  color: var(--g900);
  transition: border-color .2s, box-shadow .2s;
  background: #fff
}

.fg2 input:focus,
.fg2 select:focus,
.fg2 textarea:focus {
  border-color: var(--blue3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .09)
}

.fg2 input.error,
.fg2 select.error {
  border-color: #ef4444
}

.fg2 textarea {
  height: 100px;
  resize: vertical
}

.fg2 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2364748b' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center
}

.ferr {
  color: #ef4444;
  font-size: .74rem;
  margin-top: 3px;
  display: none
}

.ferr.show {
  display: block
}

.fhint {
  color: var(--g500);
  font-size: .74rem;
  margin-top: 3px
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--ydark));
  color: var(--blue);
  font-weight: 700;
  font-size: .98rem;
  border-radius: var(--r2);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 6px 18px rgba(245, 197, 24, .38);
  cursor: pointer;
  margin-top: 4px
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245, 197, 24, .5)
}

.form-submit:disabled {
  opacity: .65;
  pointer-events: none
}

.form-note {
  text-align: center;
  margin-top: 11px;
  font-size: .76rem;
  color: var(--g500)
}



/* ── 18. CONTACT ── */
.contact-sec {
  background: var(--off)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.contact-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 13px
}

.contact-h span {
  color: var(--blue3)
}

.contact-p {
  color: var(--g500);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: .93rem
}

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

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--bluelt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue3);
  font-size: 1.05rem;
  flex-shrink: 0
}

.ci h4 {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 3px;
  font-size: .88rem
}

.ci p,
.ci a {
  color: var(--g500);
  font-size: .86rem;
  line-height: 1.6
}

.ci a:hover {
  color: var(--blue3)
}

.maps-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px
}

.map-frame {
  width: 100%;
  height: 265px;
  border: 0;
  border-radius: var(--r);
  box-shadow: var(--sh2);
  display: block
}

.contact-form-card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--sh2)
}

.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 22px
}

.contact-form-card .fg2.full input,
.contact-form-card .fg2.full textarea {
  width: 100%
}

.contact-form-card .fg2.full textarea {
  height: 110px;
  resize: vertical
}

.contact-form-card .fg2.full label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--g700);
  margin-bottom: 5px
}

/* ── 19. COLLEGE MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 92, .72);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(5px)
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.modal-box {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92);
  transition: transform .3s;
  box-shadow: 0 40px 120px rgba(10, 31, 92, .35)
}

.modal-overlay.open .modal-box {
  transform: scale(1)
}

.modal-header {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  padding: 32px;
  color: #fff;
  border-radius: 22px 22px 0 0;
  position: relative
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s
}

.modal-close:hover {
  background: rgba(255, 255, 255, .26)
}

.modal-logo-wrap {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  margin-bottom: 13px
}

.modal-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px
}

.modal-sub {
  color: rgba(255, 255, 255, .72);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .87rem
}

.modal-body {
  padding: 32px
}

.msec {
  margin-bottom: 28px
}

.msec h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--bluelt);
  display: flex;
  align-items: center;
  gap: 7px
}

.msec h3 i {
  color: var(--blue3)
}

.dept-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 9px
}

.di {
  background: var(--bluelt);
  border-radius: var(--r2);
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue)
}

.di i {
  color: var(--blue3);
  font-size: .84rem
}

.fac-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.fi {
  background: var(--off);
  border: 1px solid var(--g300);
  border-radius: var(--r2);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--g700)
}

.fi i {
  color: var(--ydark)
}

.mgallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.mgi {
  border-radius: var(--r2);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bluelt), var(--blue3));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center
}

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

.modal-apply {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--ydark));
  color: var(--blue);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--r2);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  margin-top: 6px
}

.modal-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 197, 24, .42)
}

/* ── 20. SUCCESS POPUP ── */
.popup-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

.popup-ov.show {
  opacity: 1;
  visibility: visible
}

.popup-box {
  background: #fff;
  border-radius: 22px;
  padding: 44px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  margin: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .3)
}

.popup-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 1.9rem
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px
}

.popup-text {
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: .92rem
}

.pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--r2);
  font-weight: 600;
  font-size: .86rem;
  margin: 0 auto 14px;
  transition: all .3s;
  cursor: pointer
}

.pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, .35)
}

.popup-ok {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--blue3), var(--blue2));
  color: #fff;
  border-radius: var(--r2);
  font-weight: 600;
  font-size: .96rem;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer
}

.popup-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .35)
}

/* ── 21. FOOTER ── */
.footer {
  background: var(--g900);
  color: rgba(255, 255, 255, .68);
  padding-top: 64px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px
}

.footer-brand .ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.ft-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain
}

.ft-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff
}

.ft-name span {
  color: var(--blue3)
}

.ft-sub {
  font-size: .56rem;
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .5px
}

.footer-brand p {
  font-size: .86rem;
  line-height: 1.8;
  margin-bottom: 20px
}

.ft-social {
  display: flex;
  gap: 10px
}

.ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  transition: all .22s
}

.ft-social a:hover {
  background: var(--blue3);
  color: #fff;
  transform: translateY(-3px)
}

.ft-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .4px
}

.ft-col ul li {
  margin-bottom: 9px
}

.ft-col ul li a {
  color: rgba(255, 255, 255, .56);
  font-size: .84rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.ft-col ul li a i {
  font-size: .7rem;
  color: var(--blue3)
}

.ft-col ul li a:hover {
  color: #fff
}

.ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .84rem
}

.ft-contact li i {
  color: var(--blue3);
  margin-top: 3px;
  flex-shrink: 0
}

.ft-contact li a {
  color: rgba(255, 255, 255, .56);
  transition: color .2s
}

.ft-contact li a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  font-size: .78rem;
  text-align: center
}

/* ── 22. FLOATING BUTTONS ── */
.wa-float {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .48);
  z-index: 999;
  transition: all .3s;
  animation: waPulse 2.2s ease-in-out infinite
}

.wa-float:hover {
  transform: scale(1.12)
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .48)
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, .75)
  }
}

.scroll-top {
  position: fixed;
  bottom: 22px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--sh2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  cursor: pointer
}

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

.scroll-top:hover {
  background: var(--blue3);
  transform: translateY(-3px)
}

/* ── 23. RESPONSIVE — 1200px ── */
@media(max-width:1200px) {
  .filter-layout {
    grid-template-columns: 240px 1fr
  }

  .wcard {
    flex: 0 0 calc(33.33% - 14px)
  }
}

/* ── 24. RESPONSIVE — 1024px ── */
@media(max-width:1024px) {
  section {
    padding: 70px 0
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-visual {
    display: none
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .register-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cc {
    align-items: center;
    text-align: center
  }

  .cc:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .09)
  }

  .cc:nth-last-child(-n+2) {
    border-bottom: none
  }

  .filter-layout {
    grid-template-columns: 1fr;
    padding-left:5px;
    padding-right: 5px;
  }

  .filter-panel {
    position: static;
    display: block
  }

  .filter-results {
    max-height: 70vh;
    overflow-y: auto;
    scroll-behavior: smooth
  }
}

/* ── 25. RESPONSIVE — 900px ── */
@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .top-info {
    display: none
  }

  .wcard {
    flex: 0 0 calc(50% - 10px)
  }

  .about-cards {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .filter-layout {
    grid-template-columns: 1fr;
    padding-left:5px;
    padding-right: 5px;

  }

  .filter-panel {
    position: static;
    display: flex;
    grid-auto-flow: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

.filter-results {

  overflow-y: auto;
  scroll-behavior: smooth
}
}

/* ── 26. RESPONSIVE — 768px ── */
@media(max-width:768px) {
  section {
    padding: 60px 0
  }

  .hero-container {
    padding-top: 10px;
    padding-bottom: 10px
  }

  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem)
  }

  .fcc-grid {
    grid-template-columns: 1fr 1fr
  }

  .gs-card {
    width: 72%
  }

  .gs-card[data-pos="1"] {
    transform: translateX(68%) scale(.8)
  }

  .gs-card[data-pos="-1"] {
    transform: translateX(-68%) scale(.8)
  }

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

  .register-grid {
    gap: 36px
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .modal-box {
    border-radius: 16px
  }

  .modal-header {
    padding: 24px
  }

  .modal-body {
    padding: 22px
  }

  .mgallery {
    grid-template-columns: 1fr 1fr
  }

  .dept-list {
    grid-template-columns: 1fr 1fr
  }

  .maps-wrap {
    flex-direction: column
  }
}

/* ── 27. RESPONSIVE — 480px ── */
@media(max-width:480px) {
  .container {
    padding: 0 14px
  }

  section {
    padding: 48px 0
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px
  }

  .hstat {
    min-width: 80px
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr
  }

  .cc {
    align-items: center;
    text-align: center;
    padding: 32px 16px
  }

  .cc:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .09)
  }

  .wcard {
    flex: 0 0 100%
  }

  .about-cards {
    grid-template-columns: 1fr
  }

  .fcc-grid {
    grid-template-columns: 1fr
  }

  .gs-card {
    width: 88%
  }

  .gs-card[data-pos="1"] {
    transform: translateX(78%) scale(.78)
  }

  .gs-card[data-pos="-1"] {
    transform: translateX(-78%) scale(.78)
  }

  .gs-card[data-pos="2"] {
    opacity: 0
  }

  .gs-card[data-pos="-2"] {
    opacity: 0
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-card {
    padding: 22px 16px
  }

  .popup-box {
    padding: 32px 18px
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px
  }

  .mgallery {
    grid-template-columns: 1fr
  }

  .dept-list {
    grid-template-columns: 1fr
  }
}

/* ── 28. PRINT ── */
@media print {

  .navbar,
  .top-bar,
  .wa-float,
  .scroll-top,
  #loader,
  .mob-drawer,
  .mob-backdrop {
    display: none !important
  }

  section {
    padding: 20px 0
  }

  .hero {
    min-height: auto
  }
}

/* Register Section — Logo Header */
.reg-logo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, .15)
}

.reg-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2)
}

.reg-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.reg-logo-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: .04em;
  line-height: 1.2
}

.reg-logo-sub {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  margin-top: 2px
}

.reg-logo-addr {
  font-size: .68rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 3px
}

/* WhatsApp PDF Banner */
.reg-wa-box {
  display: flex;
  gap: 14px;
  background: rgba(37, 211, 102, .12);
  border: 1.5px solid rgba(37, 211, 102, .35);
  border-radius: var(--r);
  padding: 16px;
  margin-top: 22px;
  align-items: flex-start
}

.reg-wa-icon {
  font-size: 2rem;
  color: #25d366;
  flex-shrink: 0;
  margin-top: 2px
}

.reg-wa-box p {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  line-height: 1.55;
  margin: 4px 0 10px
}

.reg-wa-box strong {
  color: #fff
}

.reg-wa-title {
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
  margin-bottom: 4px
}

.reg-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 18px;
  border-radius: 99px;
  transition: all .3s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35)
}

.reg-wa-btn:hover {
  background: #1db954;
  transform: translateY(-2px)
}

.reg-wa-btn i {
  font-size: 1rem
}

/* Form WhatsApp note */
.form-wa-note {
  text-align: center;
  margin-top: 10px;
  font-size: .78rem;
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.form-wa-note i {
  color: #25d366;
  font-size: 1rem
}

.form-wa-note a {
  color: var(--blue3);
  font-weight: 600
}

/* ── MOBILE FILTER SCROLL BAR ── */
.mob-filter-bar {
  display: none;
  overflow: hidden;
  position: sticky;
  top: 66px;
  z-index: 99;
  background: #fff;
  border-bottom: 2px solid var(--g100);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07)
}

.mob-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch
}

.mob-filter-scroll::-webkit-scrollbar {
  display: none
}

.mfb-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 99px;
  border: 1.5px solid var(--g200);
  background: #fff;
  color: var(--g700);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  scroll-snap-align: start
}

.mfb-chip i {
  font-size: .7rem
}

.mfb-chip:hover {
  border-color: var(--blue3);
  color: var(--blue3);
  background: var(--bluelt)
}

.mfb-chip.mfb-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

/* Show mobile bar, hide sidebar panel on tablet/mobile */
/* ===== NEW FILTER PANEL ENHANCEMENTS ===== */

/* Global search bar */
.fp-global-search {
  position: relative;
  margin-bottom: 16px;
}
.fp-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue3);
  font-size: .8rem;
  pointer-events: none;
}
.fp-search-input {
  width: 100%;
  padding: 9px 34px 9px 30px;
  border: 2px solid var(--blue3);
  border-radius: var(--r2);
  font-size: .84rem;
  color: var(--g700);
  background: var(--bluelt);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.fp-search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.fp-search-input::placeholder { color: var(--g400); }
.fp-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--g500);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: .75rem;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
.fp-search-clear:hover { background: var(--g200); color: var(--g700); }
.fp-search-hints {
  font-size: .7rem;
  color: var(--g400);
  margin: -10px 0 12px;
  padding: 0 2px;
  line-height: 1.4;
}


/* Category group header */
.fp-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  padding: 6px 4px;
  border-radius: 6px;
  transition: background .15s;
}
.fp-group-head:hover { background: var(--bluelt); }
.fp-group-head label {
  cursor: pointer;
  pointer-events: none;
  margin-bottom: 0 !important;
  flex: 1;
}
.fp-chevron {
  color: var(--blue3);
  font-size: .7rem;
  transition: transform .25s;
}
.fp-chevron.rotated { transform: rotate(-90deg); }

/* "All …" checkbox separator */
.fp-all-check + span { font-weight: 600; color: var(--blue3); }
.fp-check-item:has(.fp-all-check) {
  border-bottom: 1px solid var(--g100);
  margin-bottom: 4px;
  padding-bottom: 6px;
}

/* Selected value badge shown in collapsed group header */
.fp-selected-tag {
  display: none;
  align-items: center;
  background: var(--blue3);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: auto;
  margin-right: 6px;
  letter-spacing: .01em;
  flex-shrink: 0;
}

/* Category-level search */
.fp-cat-search {
  width: 100%;
  padding: 6px 10px;
  margin: 8px 0 4px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r2);
  font-size: .78rem;
  color: var(--g700);
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s;
}
.fp-cat-search:focus {
  outline: none;
  border-color: var(--blue3);
}
.fp-cat-search::placeholder { color: var(--g400); }

/* Scrollable list */
.fp-scroll-list {
  max-height: 150px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 4px;
}
.fp-scroll-list::-webkit-scrollbar { width: 4px; }
.fp-scroll-list::-webkit-scrollbar-track { background: var(--g100); border-radius: 99px; }
.fp-scroll-list::-webkit-scrollbar-thumb { background: var(--blue3); border-radius: 99px; }

/* Collapse animation */
.fp-group-body {
  overflow: hidden;
  transition: max-height .3s ease;
  max-height: 600px;
}
.fp-group-body.collapsed { max-height: 0; }

/* Radio item */
.fp-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .12s;
  font-size: .82rem;
  color: var(--g700);
}
.fp-check-item:hover { background: var(--bluelt); }
.fp-check-item input[type="checkbox"] {
  accent-color: var(--blue3);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 3px;
}
.fp-check-item span {
  line-height: 1.3;
  word-break: break-word;
}
.fp-check-item:has(input:checked) {
  background: var(--bluelt);
  color: var(--blue);
  font-weight: 600;
}
/* Department group section headers inside the scrollable filter list */
.fp-group-label {
  display: block;
  padding: 8px 6px 3px;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue3);
  border-top: 1px solid var(--g200);
}
.fp-group-label:first-child { margin-top: 0; border-top: none; }

/* ═══════════════════════════════════════════════════════
   INSTAGRAM LIVE SECTION
═══════════════════════════════════════════════════════ */
.insta-section {
  padding:90px 0 70px;
  background:var(--blue);
}
.insta-tag {
  background:linear-gradient(135deg,rgba(225,48,108,.18),rgba(253,178,0,.12)) !important;
  color:#f472b6 !important;
  border:1px solid rgba(225,48,108,.25) !important;
}
.insta-embed-wrap { margin-top:36px; }

/* Placeholder card shown until Behold is set up */
.insta-live-placeholder {
  background: linear-gradient(135deg,rgba(225,48,108,.08),rgba(253,178,0,.06));
  border: 1.5px dashed rgba(225,48,108,.35);
  border-radius:20px;
  padding:50px 30px;
  text-align:center;
}
.insta-live-inner { display:flex; flex-direction:column; align-items:center; gap:14px; }
.insta-live-icon {
  font-size:3.5rem;
  background:linear-gradient(135deg,#e1306c,#fd1d1d,#f77737,#fcaf45);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.insta-live-title { font-size:1.4rem; font-weight:800; color:#fff; font-family:'Playfair Display',serif; }
.insta-live-steps { font-size:.82rem; color:rgba(255,255,255,.65); max-width:400px; line-height:1.7; }
.insta-live-steps strong { color:#f472b6; }
.insta-live-steps ol { text-align:left; margin-top:8px; padding-left:18px; }
.insta-live-steps a { color:#60a5fa; }
.insta-live-steps code { background:rgba(255,255,255,.08); padding:1px 7px; border-radius:4px; font-size:.78rem; color:#86efac; }
.insta-setup-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:11px 26px; border-radius:30px;
  background:linear-gradient(135deg,#e1306c,#f77737);
  color:#fff; font-weight:700; font-size:.85rem;
  text-decoration:none;
  box-shadow:0 4px 20px rgba(225,48,108,.35);
  transition:transform .2s, box-shadow .2s;
}
.insta-setup-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(225,48,108,.5); }

/* Follow button */
.insta-follow-strip { text-align:center; margin-top:32px; }
.insta-follow-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 32px; border-radius:50px;
  background:linear-gradient(135deg,#e1306c,#fd1d1d,#f77737,#fcaf45);
  color:#fff; font-size:.95rem; font-weight:700;
  text-decoration:none; letter-spacing:.3px;
  box-shadow:0 6px 28px rgba(225,48,108,.4);
  transition:transform .25s, box-shadow .25s;
}
.insta-follow-btn:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(225,48,108,.55); }

/* Responsive */
@media(max-width:768px){
  .bk-book,.bk-viewport { width:100%; height:auto; }
  .bk-book { height:360px; }
  .bk-stage { gap:8px; }
  .bk-arrow { width:38px; height:38px; font-size:.8rem; }
  .bk-cover-title { font-size:1.5rem; }
  .bk-inner-page { padding:18px 14px; }
  .dca-word { font-size:clamp(1.3rem,6vw,2rem); }
  .bk-tabs { gap:7px; }
  .bk-tab { padding:7px 13px; font-size:.75rem; }
}

/* Behold widget wrapper */
.behold-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
behold-widget {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Dream / Choose / Achieve tagline
═══════════════════════════════════════════════════════════ */
.hero-dca {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.dca-word {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: dcaReveal 0.7s ease forwards;
}
.dca-dream  { color: #fde047; animation-delay: 0.3s; }
.dca-choose { color: #86efac; animation-delay: 0.7s; }
.dca-achieve{ color: #f9a8d4; animation-delay: 1.1s; }
.dca-exc {
  font-size: 0.7em;
  vertical-align: super;
  letter-spacing: -1px;
}
@keyframes dcaReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero quote lines */
.hero-quotes-wrap {
  margin: 0.5rem 0 0.9rem;
}
.hero-quote-line {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  opacity: 0;
  animation: dcaReveal 0.7s ease forwards;
  animation-delay: 1.5s;
}
.hql2 { animation-delay: 1.85s; }
.hero-qi {
  color: var(--yellow, #f5c518);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}
/* ═══════════════════════════════════════════════════════
   HERO — Dream / Choose / Achieve  (keep from before)
═══════════════════════════════════════════════════════ */
.hero-dca{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;margin-bottom:.75rem}
.dca-word{font-family:'Playfair Display',serif;font-weight:900;font-size:clamp(1.6rem,4vw,2.8rem);line-height:1;display:inline-block;opacity:0;transform:translateY(30px);animation:dcaReveal .7s ease forwards}
.dca-dream{color:#fde047;animation-delay:.3s}.dca-choose{color:#86efac;animation-delay:.7s}.dca-achieve{color:#f9a8d4;animation-delay:1.1s}
.dca-exc{font-size:.7em;vertical-align:super;letter-spacing:-1px}
@keyframes dcaReveal{to{opacity:1;transform:translateY(0)}}
.hero-quotes-wrap{margin:.5rem 0 .9rem}
.hero-quote-line{color:rgba(255,255,255,.82);font-size:.88rem;font-style:italic;margin-bottom:.3rem;display:flex;align-items:flex-start;gap:6px;opacity:0;animation:dcaReveal .7s ease forwards;animation-delay:1.5s}
.hql2{animation-delay:1.85s}
.hero-qi{color:var(--yellow,#f5c518);font-size:.7rem;margin-top:3px;flex-shrink:0}

