 
/* =====================================================
   MEHIT NAV — FINAL PRODUCTION BUILD
   The only nav override block. Everything else is deleted.
   ===================================================== */

/* ---------- DESKTOP: balanced pill, dead-center logo ---------- */
@media (min-width: 981px) {
  .mehit-premium-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    height: 74px !important;
    padding: 0 28px !important;
  }
  .mehit-nav-left {
    grid-column: 1 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 22px !important;
  }
  .mehit-nav-logo {
    grid-column: 2 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
  }
  .mehit-nav-right {
    grid-column: 3 !important;
    display: flex !important;
    justify-content: flex-end !important;   /* kills the empty right gap */
    align-items: center !important;
    gap: 22px !important;
  }
  .mehit-menu-toggle { display: none !important; }
}

/* ---------- Hover bridge: stops dropdown flicker ---------- */
.mehit-desktop-dropdown > div::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -16px;
  height: 16px;
}

/* ---------- Academics Mega Menu ---------- */
.mehit-mega-academics > div {
  width: min(880px, 92vw) !important;
  left: 0 !important;
  transform: translateY(14px) !important;
  padding: 28px !important;
  border-radius: 24px !important;
}
.mehit-mega-academics:hover > div { transform: translateY(0) !important; }

.mehit-mega-grid { display: grid; grid-template-columns: 1fr 1.15fr 1.15fr; gap: 28px; }
.mehit-mega-col { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.mehit-mega-title {
  color: #C7A94F; font-size: .72rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .12em;
  margin: 0 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mehit-mega-link {
  color: rgba(255,255,255,.8) !important;
  text-decoration: none; font-size: .9rem; font-weight: 600;
  padding: 6px 0 !important; display: block; transition: .2s;
  border-radius: 0 !important;
}
.mehit-mega-link:hover { color: #fff !important; padding-left: 6px !important; background: transparent !important; }
.mehit-mega-link-highlight {
  display: flex; flex-direction: column;
  background: rgba(199,169,79,.1); border: 1px solid rgba(199,169,79,.2);
  padding: 12px !important; border-radius: 12px; margin-bottom: 10px;
  text-decoration: none; transition: .3s;
}
.mehit-mega-link-highlight span { color: #C7A94F; font-weight: 800; font-size: .95rem; }
.mehit-mega-link-highlight small { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 4px; }
.mehit-mega-link-highlight:hover { background: rgba(199,169,79,.2); transform: translateY(-2px); }
.mehit-mega-cta {
  margin-top: 10px; background: #C7A94F; color: #071523 !important;
  text-align: center; padding: 10px !important; border-radius: 999px;
  font-weight: 800; font-size: .85rem; text-decoration: none; transition: .3s;
}
.mehit-mega-cta:hover { background: #fff; transform: translateY(-2px); }
.mehit-mega-divider { height: 1px; background: rgba(255,255,255,.1); margin: 10px 0; }

@media (max-width: 1100px) and (min-width: 981px) {
  .mehit-mega-grid { grid-template-columns: 1fr 1fr; }
  .mehit-mega-col:first-child { grid-column: span 2; }
}

/* ---------- MOBILE: toggle visible, menu slides ---------- */
@media (max-width: 980px) {
  .mehit-premium-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
  }
  .mehit-nav-left, .mehit-nav-right { display: none !important; }
  .mehit-nav-logo {
    grid-column: 2 !important;
    position: static !important;
    transform: none !important;
  }
  .mehit-menu-toggle {
    grid-column: 3 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    cursor: pointer !important;
    font-weight: 900 !important;
    font-size: .86rem !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
  }
  .mehit-menu-toggle img { width: 28px; height: 28px; display: block; object-fit: contain; }
}





/* =======================================================
   FIX: MOBILE ACADEMICS SUB-MENU (CLEAN & HIDDEN)
   ======================================================= */

/* 1. Force the container to be clean (no white box) */
.mobile-sub-group {
  margin: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent !important; /* Remove white bg */
  border-radius: 0 !important;
}

/* 2. Style the Trigger Button (Gold text, transparent bg) */
.mobile-sub-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent !important; /* Force transparent */
  border: 0;
  padding: 14px 0;
  color: #C7A94F !important; /* Gold text */
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  letter-spacing: .02em;
}

/* Remove any white background on hover/active */
.mobile-sub-trigger:hover,
.mobile-sub-trigger:focus {
  background: transparent !important;
}

/* 3. The Icon (+) */
.mobile-sub-trigger span {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform .3s ease;
  color: #C7A94F;
}

/* Rotate icon when open */
.mobile-sub-group.active .mobile-sub-trigger span {
  transform: rotate(45deg);
}

/* 4. THE HIDDEN CONTENT (Critical Fix) */
.mobile-sub-content {
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .4s ease, opacity .3s ease, visibility .3s;
  padding-left: 12px;
  border-left: 1px solid rgba(199,169,79,.2); /* Subtle gold line */
  margin-left: 4px;
}

/* 5. WHEN ACTIVE (Open) */
.mobile-sub-group.active .mobile-sub-content {
  max-height: 500px; /* Expand */
  opacity: 1;
  visibility: visible;
  padding-bottom: 10px;
  padding-top: 5px;
}

/* 6. Links inside the sub-content */
.mobile-sub-content a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .95rem;
  padding: 10px 0;
  transition: color .2s, padding-left .2s;
  border-bottom: 1px solid rgba(255,255,255,.03);
}

.mobile-sub-content a:last-child {
  border-bottom: none;
}

.mobile-sub-content a:hover {
  color: #fff;
  padding-left: 6px;
}

















  /* ================================
   MEHIT PREMIUM SEQUENCE HERO
================================ */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: #050B12;
}

/* navbar floats over hero */
.menu,
.navbar-fixed-top,
.navbar {
  z-index: 9999 !important;
}

.navbar {
  background: rgba(7, 21, 35, 0.78) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

  .mehit-home-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);

  height: 88vh;
  min-height: 620px;
  max-height: 820px;

  position: relative;
  overflow: hidden;

  background: #050B12;

  font-family: Rubik, Inter, Arial, sans-serif;
  isolation: isolate;
}

/* pull hero under fixed nav */
section.menu + .mehit-home-hero,
.mehit-home-hero {
  margin-top: 0;
}

/* scenes */
.mehit-hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 950ms ease,
    visibility 950ms ease,
    transform 1400ms cubic-bezier(.22, 1, .36, 1);
}

.mehit-hero-scene.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* media */
.mehit-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* slow photo movement */
.image-scene.active .mehit-hero-media {
  animation: mehitHeroImageDrift 6.5s ease forwards;
}

/* premium overlay */
.mehit-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(5, 11, 18, 0.92) 0%,
      rgba(5, 11, 18, 0.72) 34%,
      rgba(5, 11, 18, 0.36) 68%,
      rgba(5, 11, 18, 0.12) 100%),
    linear-gradient(to top,
      rgba(5, 11, 18, 0.88) 0%,
      rgba(5, 11, 18, 0.42) 42%,
      rgba(5, 11, 18, 0.18) 100%),
    radial-gradient(circle at 20% 55%,
      rgba(199, 169, 79, 0.18),
      transparent 38%);
}

/* video overlay slightly more cinematic */
.video-scene .mehit-hero-shade {
  background:
    linear-gradient(90deg,
      rgba(5, 11, 18, 0.88) 0%,
      rgba(5, 11, 18, 0.62) 42%,
      rgba(5, 11, 18, 0.28) 100%),
    linear-gradient(to top,
      rgba(5, 11, 18, 0.92) 0%,
      rgba(5, 11, 18, 0.38) 50%,
      rgba(5, 11, 18, 0.10) 100%),
    radial-gradient(circle at 45% 48%,
      rgba(199, 169, 79, 0.14),
      transparent 42%);
}

/* content */
.mehit-hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 7vw, 120px);
  top: 52%;
  transform: translateY(-50%);
  max-width: 720px;
  color: #ffffff;
  opacity: 0;
  pointer-events: auto;
}

.mehit-hero-scene.active .mehit-hero-copy {
  animation: mehitHeroCopyIn 900ms ease 520ms forwards;
}

.mehit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}


.mehit-hero-copy h1,
.mehit-hero-copy h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: #ffffff;

  font-size: clamp(2.9rem, 5.3vw, 5.4rem);

  line-height: .98;
  letter-spacing: -0.045em;

  margin: 0 0 22px;

  text-wrap: balance;
}





.mehit-hero-copy h2 {
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
  max-width: 880px;
}

.mehit-hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.85;
  margin: 0;
}

/* buttons */
.mehit-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.mehit-hero-actions a,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.hero-btn-primary,
.hero-link {
  background: #C7A94F;
  color: #071523;
  box-shadow: 0 18px 45px rgba(199, 169, 79, 0.22);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-link {
  margin-top: 30px;
}

.mehit-hero-actions a:hover,
.hero-link:hover {
  transform: translateY(-4px);
}

.hero-btn-secondary:hover {
  border-color: rgba(199, 169, 79, 0.55);
}

/* small right controls */
.mehit-hero-controls {
  position: absolute;
  z-index: 8;
  right: clamp(18px, 4vw, 58px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mehit-hero-controls button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 27px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 260ms ease;
}

.mehit-hero-controls button:hover {
  background: rgba(199, 169, 79, 0.92);
  color: #071523;
  transform: translateY(-2px);
}

/* progress bar */
.mehit-hero-progress {
  position: absolute;
  z-index: 8;
  left: clamp(24px, 7vw, 120px);
  bottom: 44px;
  width: min(240px, 45vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.mehit-hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #C7A94F;
  border-radius: inherit;
  animation: mehitHeroProgress 6.2s linear infinite;
}

.video-scene.active ~ .mehit-hero-progress span {
  animation-duration: 8s;
}

/* animations */
@keyframes mehitHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 34px));
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}

@keyframes mehitHeroImageDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes mehitHeroProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ================================
   MOBILE + TABLET
================================ */

@media (max-width: 980px) {
  .mehit-home-hero {
    min-height: 760px;
  }

  .mehit-hero-copy {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 120px;
    transform: none;
    max-width: none;
  }

  .mehit-hero-scene.active .mehit-hero-copy {
    animation: mehitHeroCopyMobileIn 850ms ease 520ms forwards;
  }

  .mehit-hero-copy h1,
  .mehit-hero-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4.7rem);
  }

  .mehit-hero-copy p {
    max-width: 100%;
  }

  .mehit-hero-controls {
    top: auto;
    right: 20px;
    bottom: 38px;
    flex-direction: row;
  }

  .mehit-hero-progress {
    left: 22px;
    bottom: 55px;
    width: calc(100% - 140px);
  }
}

@media (max-width: 560px) {
  .mehit-home-hero {
    height: 100svh;
    min-height: 720px;
  }

  .mehit-hero-shade {
    background:
      linear-gradient(to top,
        rgba(5, 11, 18, 0.96) 0%,
        rgba(5, 11, 18, 0.66) 50%,
        rgba(5, 11, 18, 0.24) 100%);
  }

  .mehit-kicker {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .mehit-kicker::before {
    width: 28px;
  }

  .mehit-hero-actions {
    flex-direction: column;
  }

  .mehit-hero-actions a,
  .hero-link {
    width: 100%;
  }

  .hero-link {
    margin-top: 24px;
  }

  .mehit-hero-controls button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

@keyframes mehitHeroCopyMobileIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mehit-hero-scene,
  .mehit-hero-copy,
  .image-scene.active .mehit-hero-media,
  .mehit-hero-progress span {
    animation: none !important;
    transition: none !important;
  }

  .mehit-hero-copy {
    opacity: 1 !important;
  }
}












.mehit-hero-identity {
  margin: 34px auto 0;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.mehit-identity-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  gap: 10px;
}

.mehit-identity-title {
  position: relative;
  display: block;
  width: 100%;
  height: 34px;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mehit-identity-title span,
.mehit-identity-words span,
.mehit-identity-desc span {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  animation: mehitIdentityFade 12s ease-in-out infinite;
}

.mehit-identity-title span:nth-child(1),
.mehit-identity-words span:nth-child(1),
.mehit-identity-desc span:nth-child(1) {
  animation-delay: 0s;
}

.mehit-identity-title span:nth-child(2),
.mehit-identity-words span:nth-child(2),
.mehit-identity-desc span:nth-child(2) {
  animation-delay: 3s;
}

.mehit-identity-title span:nth-child(3),
.mehit-identity-words span:nth-child(3),
.mehit-identity-desc span:nth-child(3) {
  animation-delay: 6s;
}

.mehit-identity-title span:nth-child(4),
.mehit-identity-words span:nth-child(4),
.mehit-identity-desc span:nth-child(4) {
  animation-delay: 9s;
}

.mehit-identity-words {
  position: relative;
  width: 100%;
  min-height:155px;
  overflow: hidden;
  color: #C7A94F;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
}

.mehit-identity-words span {
  width: 100%;
  text-align: center;
  line-height: 1.09;
  padding: 0 12px;
}

.mehit-identity-desc {
  position: relative;
  min-height: 72px;
  margin-top: 10px;
  color: rgba(255,255,255,.74);
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.75;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.mehit-identity-desc span {
  width: 100%;
  text-align: center;
}

@keyframes mehitIdentityFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
    filter: blur(4px);
  }

  7%, 22% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0);
  }

  30%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
    filter: blur(4px);
  }
}

@media(max-width: 768px) {

  .mehit-hero-identity {
    margin-top: 26px;
    max-width: 100%;
  }

  .mehit-identity-line {
    min-height: 180px;
    gap: 8px;
  }

  .mehit-identity-title {
    height: 26px;
    font-size: .9rem;
  }

  .mehit-identity-words {
    height: 190px;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .mehit-identity-desc {
    min-height: 95px;
    font-size: .92rem;
    line-height: 1.6;
    padding: 0 8px;
  }

}














.mehit-figures-coverflow {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 72vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(199,169,79,.10), transparent 30%),
    linear-gradient(180deg, #071523 0%, #050B12 100%);
  padding: clamp(60px, 7vw, 95px) clamp(18px, 5vw, 80px);
  font-family: Rubik, Inter, Arial, sans-serif;
  color: #fff;
}

.mehit-figures-coverflow-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.mehit-figures-coverflow-head span {
  color: #C7A94F;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.mehit-figures-coverflow-head h2 {
  color: #ffffff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 14px 0 0;
}

.mehit-figures-stage {
  width: 100%;
  perspective: 1400px;
  display: grid;
  place-items: center;
}

.mehit-figures-coverflow-track {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
  overflow: visible;
}

.mehit-figure-slide {
  position: absolute;
  width: 215px;
  height: 150px;
  transform-style: preserve-3d;
  cursor: pointer;
  transition:
    transform .7s cubic-bezier(.22,1,.36,1),
    opacity .45s ease,
    filter .45s ease;
  will-change: transform;
}

.mehit-figure-card {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 18px;
  overflow: hidden;
  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.mehit-figure-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,169,79,.30);
  background: rgba(255,255,255,.07);
}

.impact-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.mehit-figure-card b,
.mehit-figure-card em {
  display: inline-block;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -.05em;
}

.mehit-figure-card em {
  color: #C7A94F;
  margin-left: 3px;
}

.mehit-figure-card i {
  color: #fff;
  font-size: 2.15rem;
  margin-bottom: 16px;
}

.mehit-figure-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.35;
}

/* MOBILE */
@media(max-width: 900px) {
  .mehit-figures-coverflow {
    min-height: 62vh;
  }

  .mehit-figures-coverflow-track {
    height: 230px;
  }

  .mehit-figure-slide {
    width: 180px;
    height: 135px;
  }
}

@media(max-width: 560px) {
  .mehit-figures-coverflow {
    padding: 58px 14px;
    min-height: 58vh;
  }

  .mehit-figures-coverflow-head {
    margin-bottom: 28px;
  }

  .mehit-figures-coverflow-track {
    height: 220px;
  }

  .mehit-figure-slide {
    width: 165px;
    height: 125px;
  }

  .mehit-figure-card {
    border-radius: 22px;
    padding: 20px 14px;
  }

  .mehit-figure-card i {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .mehit-figure-card p {
    font-size: .78rem;
  }
}











.mehit-academic-cards {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(75px, 8vw, 115px) clamp(18px, 5vw, 55px);
  background:
    radial-gradient(circle at 50% 0%, rgba(199,169,79,.12), transparent 34%),
    linear-gradient(180deg, #071523 0%, #02060C 100%);
  font-family: Rubik, Inter, Arial, sans-serif;
  overflow: hidden;
}

.mehit-academic-cards-head {
  max-width: 1040px;
  margin: 0 auto 46px;
  text-align: center;
}

.mehit-academic-cards-head span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.mehit-academic-cards-head h2 {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 18px 0;
}

.mehit-academic-cards-head p {
  max-width: 780px;
  margin: auto;
  color: rgba(255,255,255,.74);
  font-size: 1.02rem;
  line-height: 1.8;
}

.mehit-academic-card-grid {
  max-width: 1480px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.mehit-program-card {
  position: relative;
  min-height: 585px;
  border-radius: 26px;
  overflow: hidden;
  background: #071523;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}


  .program-card-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 52%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: mehitProgramFade 20s ease-in-out infinite;
}

.program-card-images img:nth-child(1) { animation-delay: 0s; }
.program-card-images img:nth-child(2) { animation-delay: 4s; }
.program-card-images img:nth-child(3) { animation-delay: 8s; }
.program-card-images img:nth-child(4) { animation-delay: 12s; }
.program-card-images img:nth-child(5) { animation-delay: 16s; }

@keyframes mehitProgramFade {
  0%, 100% {
    opacity: 0;
    transform: scale(1.04);
  }

  6%, 24% {
    opacity: 1;
  }

  30% {
    opacity: 0;
    transform: scale(1.1);
  }
}


@media(max-width: 650px) {
  .mehit-program-card {
    min-height: 510px;
  }

  .program-card-images img {
    height: 50%;
  }

  .program-card-content p {
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .program-card-content a {
    min-height: 44px;
    padding: 11px 18px;
    font-size: .82rem;
  }
}















.mehit-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,12,.98) 0%, rgba(7,21,35,.92) 42%, rgba(7,21,35,.20) 80%),
    linear-gradient(to bottom, transparent 0%, rgba(2,6,12,.22) 100%);
  z-index: 1;
}

.program-card-content {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.program-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 30px;
}

.program-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}

.program-dots span:nth-child(2) {
  background: #fff;
}

.program-card-content h3 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 12px;
}

.program-card-content i {
  display: block;
  width: 38px;
  height: 2px;
  background: #C7A94F;
  margin-bottom: 20px;
}

.program-card-content p {
  color: rgba(255,255,255,.76);
  font-size: .96rem;
  line-height: 1.72;
  min-height: 120px;
  margin: 0 0 28px;
}

.program-card-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #C7A94F;
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 900;
  transition: .3s ease;
}

.program-card-content a b {
  color: #C7A94F;
  font-size: 1.35rem;
  font-weight: 400;
}

.program-card-content a:hover {
  background: #C7A94F;
  color: #071523;
  transform: translateY(-3px);
}

.program-card-content a:hover b {
  color: #071523;
}

.mehit-academic-bottom {
  max-width: 1160px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: #fff;
}

.mehit-academic-bottom div {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
}

.mehit-academic-bottom div:last-child {
  border-right: none;
}

.mehit-academic-bottom strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.mehit-academic-bottom span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}

@media(max-width: 1200px) {
  .mehit-academic-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mehit-program-card {
    min-height: 560px;
  }
}

@media(max-width: 650px) {
  .mehit-academic-cards {
    padding: 65px 18px;
  }

  .mehit-academic-card-grid {
    grid-template-columns: 1fr;
  }

  .mehit-program-card {
    min-height: 540px;
    border-radius: 24px;
  }

  .program-card-content {
    left: 20px;
    right: 20px;
  }

  .program-card-content p {
    min-height: auto;
  }

  .mehit-academic-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
  }

  .mehit-academic-bottom div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.16);
    padding: 0 0 20px;
  }

  .mehit-academic-bottom div:last-child {
    border-bottom: none;
  }
}









.mehit-why-slider-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(70px, 8vw, 110px) clamp(18px, 6vw, 95px);
  background:
    radial-gradient(circle at 85% 12%, rgba(199,169,79,.12), transparent 34%),
    linear-gradient(180deg, #071523 0%, #050B12 100%);
  font-family: Rubik, Inter, Arial, sans-serif;
  overflow: hidden;
}

.mehit-why-slider-head {
  max-width: 880px;
  margin: 0 0 48px;
}

.mehit-why-slider-head span,
.mehit-why-content span {
  color: #C7A94F;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mehit-why-slider-head h2 {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 16px 0 18px;
}

.mehit-why-slider-head p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-size: .98rem;
  margin: 0;
}

.mehit-why-stage {
  position: relative;
  width: 100%;
  height: min(66vh, 620px);
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  background: #050B12;
  box-shadow: 0 34px 90px rgba(0,0,0,.30);
}

.mehit-why-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.mehit-why-item {
  width: 190px;
  height: 280px;
  list-style: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.30);
  transition:
    left .7s cubic-bezier(.22,1,.36,1),
    top .7s cubic-bezier(.22,1,.36,1),
    width .7s cubic-bezier(.22,1,.36,1),
    height .7s cubic-bezier(.22,1,.36,1),
    transform .7s cubic-bezier(.22,1,.36,1),
    opacity .7s ease,
    border-radius .7s ease;
}

.mehit-why-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,11,18,.92), rgba(5,11,18,.55), rgba(5,11,18,.12)),
    linear-gradient(to top, rgba(5,11,18,.88), transparent 64%);
}

.mehit-why-item:nth-child(1),
.mehit-why-item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.mehit-why-item:nth-child(3) {
  left: 58%;
}

.mehit-why-item:nth-child(4) {
  left: calc(58% + 210px);
}

.mehit-why-item:nth-child(5) {
  left: calc(58% + 420px);
}

.mehit-why-item:nth-child(n+6) {
  left: calc(58% + 630px);
  opacity: 0;
}

.mehit-why-content {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 6vw, 78px);
  top: 50%;
  transform: translateY(calc(-50% + 34px));
  width: min(500px, 42vw);
  color: #fff;
  opacity: 0;
  display: none;
}

.mehit-why-item:nth-child(2) .mehit-why-content {
  display: block;
  animation: mehitWhyTextIn .75s ease .22s forwards;
}

.mehit-why-content h3 {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 16px 0 18px;
}

.mehit-why-content p {
  color: rgba(255,255,255,.76);
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  margin: 0 0 24px;
}

.mehit-why-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #C7A94F;
  color: #071523;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  transition: .28s ease;
  position: relative;
  z-index: 20;
}

.mehit-why-content a:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.mehit-why-controls {
  position: absolute;
  z-index: 40;
  right: clamp(20px, 4vw, 44px);
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.mehit-why-controls button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(7,21,35,.68);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 25px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .25s ease;
}

.mehit-why-controls button:hover {
  background: #C7A94F;
  color: #071523;
  transform: translateY(-2px);
}

@keyframes mehitWhyTextIn {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(calc(-50% + 54px));
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }
}

@media(max-width: 900px) {
  .mehit-why-slider-section {
    padding: 65px 18px;
  }

  .mehit-why-slider-head {
    margin-bottom: 36px;
  }

  .mehit-why-stage {
    height: 690px;
    min-height: 690px;
    border-radius: 28px;
  }

  .mehit-why-content {
    left: 24px;
    right: 24px;
    top: 39%;
    width: auto;
    z-index: 25;
  }

  .mehit-why-content h3 {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }

  .mehit-why-item {
    width: 145px;
    height: 210px;
    border-radius: 20px;
  }

  .mehit-why-item:nth-child(3) {
    left: 44%;
    top: 76%;
  }

  .mehit-why-item:nth-child(4) {
    left: calc(44% + 158px);
    top: 76%;
  }

  .mehit-why-item:nth-child(5) {
    left: calc(44% + 316px);
    top: 76%;
  }

  .mehit-why-item:nth-child(n+6) {
    left: calc(44% + 474px);
    top: 76%;
  }
}

@media(max-width: 560px) {
  .mehit-why-slider-section {
    padding: 60px 14px;
  }

  .mehit-why-slider-head h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .mehit-why-slider-head p {
    font-size: .95rem;
  }

  .mehit-why-stage {
    height: 700px;
    min-height: 700px;
    border-radius: 24px;
  }

  .mehit-why-content {
    top: 38%;
    left: 20px;
    right: 20px;
    z-index: 25;
  }

  .mehit-why-content h3 {
    font-size: clamp(1.9rem, 9.2vw, 3rem);
    line-height: .96;
    margin: 12px 0 12px;
  }

  .mehit-why-content p {
    font-size: .9rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .mehit-why-content a {
    width: auto;
    min-width: 142px;
    max-width: 100%;
    min-height: 40px;
    padding: 10px 18px;
    font-size: .78rem;
    z-index: 35;
  }

  .mehit-why-item {
    width: 112px;
    height: 154px;
    border-radius: 18px;
  }

  .mehit-why-item:nth-child(3) {
    left: 18px;
    top: 84%;
  }

  .mehit-why-item:nth-child(4) {
    left: 140px;
    top: 84%;
  }

  .mehit-why-item:nth-child(5) {
    left: 262px;
    top: 84%;
  }

  .mehit-why-item:nth-child(n+6) {
    left: 384px;
    top: 84%;
    opacity: 0;
  }

  .mehit-why-controls {
    top: 18px;
    right: 18px;
    bottom: auto;
    gap: 8px;
    z-index: 45;
  }

  .mehit-why-controls button {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(7,21,35,.84);
  }

  .mehit-why-item {
    pointer-events: none;
  }

  .mehit-why-item:nth-child(2) .mehit-why-content,
  .mehit-why-content a,
  .mehit-why-controls button {
    pointer-events: auto;
  }
}

@media(max-width: 400px) {
  .mehit-why-stage {
    height: 735px;
    min-height: 735px;
  }

  .mehit-why-content {
    top: 37%;
  }

  .mehit-why-content h3 {
    font-size: clamp(1.75rem, 8.8vw, 2.65rem);
  }

  .mehit-why-content p {
    font-size: .86rem;
    line-height: 1.55;
  }

  .mehit-why-item {
    width: 104px;
    height: 145px;
  }

  .mehit-why-item:nth-child(3) {
    left: 16px;
    top: 85%;
  }

  .mehit-why-item:nth-child(4) {
    left: 128px;
    top: 85%;
  }

  .mehit-why-item:nth-child(5) {
    left: 240px;
    top: 85%;
  }
}










.mehit-pathways {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(100px, 10vw, 140px) clamp(20px, 6vw, 100px);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  font-family: Rubik, Inter, Arial, sans-serif;
}

.pathways-intro {
  max-width: 900px;
  margin-bottom: 70px;
}

.pathways-intro span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pathways-intro h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin: 20px 0;
  color: #071523;
}

.pathways-intro p {
  color: #5f6875;
  max-width: 700px;
  line-height: 1.8;
}

/* LAYOUT */

.pathways-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

/* NAV */

.pathways-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pathway-tab {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(7,21,35,.1);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.pathway-tab.active {
  background: #071523;
  color: #fff;
}

/* CONTENT */

.pathways-content {
  position: relative;
}

.pathway-panel {
  display: none;
}

.pathway-panel.active {
  display: block;
  animation: fadeIn .5s ease;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pathway-block {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  transition: .3s;
}

.pathway-block span {
  font-size: 12px;
  color: #C7A94F;
  font-weight: 800;
}

.pathway-block h3 {
  margin: 12px 0;
  font-size: 1.2rem;
}

.pathway-block p {
  color: #5f6875;
}

.pathway-block.highlight {
  background: #071523;
  color: #fff;
}

.pathway-block.highlight p {
  color: rgba(255,255,255,.7);
}

.pathway-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0,0,0,.08);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */

@media(max-width: 900px) {
  .pathways-wrapper {
    grid-template-columns: 1fr;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }
}










.mehit-president-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  padding: clamp(95px, 10vw, 150px) clamp(20px, 6vw, 100px);
  background:
    radial-gradient(circle at 80% 20%, rgba(199,169,79,.16), transparent 34%),
    linear-gradient(135deg, #071523 0%, #0D2137 100%);
  font-family: Rubik, Inter, Arial, sans-serif;
  overflow: hidden;
}

.president-bg-text {
  position: absolute;
  right: -4vw;
  top: 40px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,.035);
  line-height: 1;
  pointer-events: none;
}

.president-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.president-portrait-wrap {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  min-height: 590px;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  transform: translateY(34px);
  opacity: 0;
  transition: .9s cubic-bezier(.22,1,.36,1);
}

.president-portrait-wrap.visible {
  transform: translateY(0);
  opacity: 1;
}

.president-gold-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(199,169,79,.55);
  border-radius: 34px;
  z-index: 2;
  pointer-events: none;
}

.president-portrait-wrap img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  display: block;
  transition: 1s ease;
}

.president-portrait-wrap:hover img {
  transform: scale(1.06);
}

.president-copy {
  color: #ffffff;
  max-width: 820px;
  transform: translateY(34px);
  opacity: 0;
  transition: .9s cubic-bezier(.22,1,.36,1) .12s;
}

.president-copy.visible {
  transform: translateY(0);
  opacity: 1;
}

.president-copy span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.president-copy h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.4rem, 5.6vw, 5.3rem);
  line-height: 1;
  margin: 18px 0 24px;
  color: #ffffff;
}

.president-copy p {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: 18px;
}

.president-lead {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: rgba(255,255,255,.84) !important;
}

.president-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.president-values div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
}

.president-values strong {
  display: block;
  color: #C7A94F;
  font-weight: 900;
  margin-bottom: 6px;
}

.president-values small {
  color: rgba(255,255,255,.68);
}

.president-btn {
  display: inline-flex;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #C7A94F;
  color: #071523;
  font-weight: 900;
  text-decoration: none;
  transition: .3s ease;
}

.president-btn:hover {
  transform: translateY(-4px);
  background: #ffffff;
}

@media(max-width: 920px) {
  .president-inner {
    grid-template-columns: 1fr;
  }

  .president-portrait-wrap,
  .president-portrait-wrap img {
    min-height: 460px;
  }
}

@media(max-width: 560px) {
  .president-values {
    grid-template-columns: 1fr;
  }

  .president-btn {
    width: 100%;
  }

  .president-portrait-wrap,
  .president-portrait-wrap img {
    min-height: 420px;
  }
}










    .mehit-program-finder {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  padding: clamp(80px, 9vw, 130px) clamp(18px, 6vw, 90px);
  background: #050B12;
  font-family: Rubik, Inter, Arial, sans-serif;
  color: #fff;
}

.mpf-bg,
.mpf-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mpf-bg img {
  object-fit: cover;
  transform: scale(1.04);
  animation: mpfZoom 18s ease-in-out infinite alternate;
}

.mpf-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,11,18,.94), rgba(5,11,18,.78), rgba(5,11,18,.55)),
    linear-gradient(to top, rgba(5,11,18,.96), rgba(5,11,18,.42)),
    radial-gradient(circle at 80% 25%, rgba(199,169,79,.16), transparent 35%);
}

.mpf-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
}

.mpf-head {
  max-width: 900px;
  margin-bottom: 38px;
}

.mpf-head span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mpf-head h2 {
  margin: 18px 0;
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.mpf-head p {
  max-width: 760px;
  color: rgba(255,255,255,.74);
  line-height: 1.8;
  font-size: 1rem;
}

.mpf-panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 32px;
  background: rgba(7,21,35,.82);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 100px rgba(0,0,0,.35);
}

.mpf-fields {
  display: grid;
  grid-template-columns: 1.4fr .85fr .85fr .9fr;
  gap: 14px;
}

.mpf-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.mpf-field input,
.mpf-field select {
  width: 100%;
  min-height: 58px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 16px;
  outline: none;
  font-size: .95rem;
}

.mpf-field select option {
  color: #071523;
}

.mpf-field input::placeholder {
  color: rgba(255,255,255,.42);
}

.mpf-field input:focus,
.mpf-field select:focus {
  border-color: rgba(199,169,79,.65);
  box-shadow: 0 0 0 4px rgba(199,169,79,.13);
}

.mpf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}

.mpf-tags button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.mpf-tags button:hover {
  background: #C7A94F;
  color: #071523;
  border-color: #C7A94F;
  transform: translateY(-2px);
}

.mpf-status {
  color: rgba(255,255,255,.68);
  font-size: .94rem;
  margin-bottom: 18px;
}

.mpf-results {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mpf-results.show {
  display: grid;
}

.mpf-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  animation: mpfCardIn .42s ease forwards;
  transition: .28s ease;
}

.mpf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,169,79,.45);
  background: rgba(255,255,255,.11);
}

.mpf-card small {
  display: block;
  color: #C7A94F;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mpf-card h3 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.mpf-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(199,169,79,.16);
  color: #C7A94F;
  font-size: .78rem;
  font-weight: 900;
}

.mpf-card p {
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  font-size: .9rem;
  margin: 0 0 16px;
}

.mpf-card strong {
  color: #fff;
  font-size: .88rem;
}

.mpf-empty {
  display: none;
  margin-top: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.mpf-empty.show {
  display: block;
}

.mpf-empty h3 {
  margin: 0 0 8px;
  color: #fff;
}

.mpf-empty p {
  color: rgba(255,255,255,.70);
  line-height: 1.6;
}

.mpf-empty a {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #C7A94F;
  color: #071523;
  font-weight: 900;
  text-decoration: none;
}

@keyframes mpfZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes mpfCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 1050px) {
  .mpf-fields,
  .mpf-results {
    grid-template-columns: 1fr 1fr;
  }

  .mpf-keyword {
    grid-column: 1 / -1;
  }
}

@media(max-width: 650px) {
  .mehit-program-finder {
    padding: 70px 16px;
  }

  .mpf-panel {
    border-radius: 26px;
  }

  .mpf-fields,
  .mpf-results {
    grid-template-columns: 1fr;
  }

  .mpf-field input,
  .mpf-field select {
    min-height: 54px;
    border-radius: 15px;
  }

  .mpf-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .mpf-tags button {
    flex: 0 0 auto;
  }
}







.mehit-premium-footer{
  width:100vw;
  margin-left:calc(50% - 50vw);

  position:relative;
  overflow:hidden;

  min-height:auto;

  padding:
  clamp(70px,8vw,110px)
  clamp(18px,6vw,90px)
  0;

  background:#050B12;

  color:#fff;

  font-family:
  Rubik,
  Inter,
  Arial,
  sans-serif;
}

.mehit-footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,35,.25), rgba(2,6,12,.96)),
    url("assets/images/blog/campus.jpg");
  background-size: cover;
  background-position: center;
  opacity: .42;
  transform: scale(1.04);
}

.mehit-footer-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(199,169,79,.18), transparent 30%),
    linear-gradient(135deg, rgba(7,21,35,.94), rgba(2,6,12,.90));
}

.mehit-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
}

.mehit-footer-top {
  max-width: 620px;
  margin-bottom: 0px;
}

.mehit-footer-top img {
  width: 78px;
  height: auto;
  margin-bottom: 20px;
}

.mehit-footer-top p {
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  font-size: 1rem;
}

.mehit-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.mehit-footer-col h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(199,169,79,.65);
}

.mehit-footer-col a {
  display: block;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: .25s ease;
}

.mehit-footer-col a:hover {
  color: #C7A94F;
  transform: translateX(5px);
}

.mehit-footer-newsletter {
  margin-top: 58px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 22px;
  align-items: center;
}

.mehit-footer-newsletter span {
  color: #C7A94F;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mehit-footer-newsletter h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.45;
}

.mehit-footer-newsletter form {
  display: flex;
  gap: 10px;
}

.mehit-footer-newsletter input {
  flex: 1;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.mehit-footer-newsletter input::placeholder {
  color: rgba(255,255,255,.46);
}

.mehit-footer-newsletter button {
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: #C7A94F;
  color: #071523;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.mehit-footer-brand {
  margin: clamp(55px, 7vw, 80px) 0 0;
  text-align: center;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(5rem, 18vw, 17rem);
  line-height: .75;
  letter-spacing: -.09em;
  background: linear-gradient(180deg, #ffffff 0%, #C7A94F 48%, rgba(255,255,255,.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .95;
  pointer-events: none;
}

.mehit-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.mehit-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .86rem;
}

.mehit-footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mehit-footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  transition: .25s ease;
}

.mehit-footer-socials a:hover {
  background: #C7A94F;
  color: #071523;
}

.mehit-footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.mehit-footer-legal a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: .86rem;
}

.mehit-footer-legal a:hover {
  color: #C7A94F;
}

@media(max-width: 900px) {
  .mehit-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mehit-footer-newsletter {
    grid-template-columns: 1fr;
  }

  .mehit-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mehit-footer-legal {
    justify-content: center;
  }
}

@media(max-width: 560px) {
  .mehit-premium-footer {
    min-height: auto;
    padding: 64px 18px 28px;
  }

  .mehit-footer-newsletter form {
    flex-direction: column;
  }

  .mehit-footer-newsletter button {
    width: 100%;
  }

  .mehit-footer-brand {
    font-size: clamp(4.4rem, 24vw, 8rem);
    line-height: .9;
  }
}



.mbr-footer,
footer,
.mehit-footer{
    margin-bottom:0 !important;
    padding-bottom:20px !important;
}

body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}














.mehit-campus-video {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 80vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  font-family: Rubik, Inter, Arial, sans-serif;
}

/* BACKGROUND */

.campus-video-bg {
  position: absolute;
  inset: 0;
}

.campus-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: campusZoom 16s ease-in-out infinite alternate;
}

/* OVERLAY */

.campus-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,11,18,.9), rgba(5,11,18,.3)),
    radial-gradient(circle at center, rgba(199,169,79,.2), transparent 40%);
}

/* CONTENT */

.campus-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

/* PLAY BUTTON */

.campus-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  margin-bottom: 24px;
  transition: .3s ease;
}

.campus-play-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.campus-play-btn:hover {
  transform: scale(1.08);
  background: rgba(199,169,79,.85);
}

/* TEXT */

.campus-video-text h2 {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 12px;
}

.campus-video-text p {
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto;
}

/* MODAL */

.campus-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.campus-video-modal.active {
  display: block;
}

.campus-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.9);
}

.campus-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
}

.campus-video-frame iframe {
  width: 100%;
  height: 500px;
  border-radius: 16px;
}

.campus-video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ANIMATION */

@keyframes campusZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}















.mehit-newsroom-cinematic {

  width: 100vw;
  margin-left: calc(50% - 50vw);

  position: relative;
  overflow: hidden;

  padding:
    clamp(85px, 9vw, 130px)
    clamp(18px, 6vw, 90px);

  background:
    linear-gradient(
      180deg,
      #071523 0%,
      #050B12 100%
    );

  font-family:
    Rubik,
    Inter,
    Arial,
    sans-serif;

}

.newsroom-cinematic-bg {

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(199,169,79,.12),
      transparent 28%
    );

  pointer-events: none;

}

.newsroom-cinematic-inner {

  position: relative;
  z-index: 2;

  max-width: 1450px;
  margin: auto;

}

/* HEADER */

.newsroom-cinematic-head {

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 50px;

}

.newsroom-cinematic-head span,
.media-zone-head span {

  color: #C7A94F;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .18em;
  text-transform: uppercase;

}

.newsroom-cinematic-head h2 {

  margin-top: 16px;

  color: #fff;

  font-family:
    "Libre Baskerville",
    Georgia,
    serif;

  font-size:
    clamp(2.5rem, 5vw, 5.2rem);

  line-height: .96;

  letter-spacing: -.05em;

  max-width: 760px;

}

.newsroom-cinematic-cta {

  flex-shrink: 0;

  padding: 16px 24px;

  border-radius: 999px;

  background:
    rgba(255,255,255,.08);

  border:
    1px solid rgba(255,255,255,.10);

  color: #fff;

  text-decoration: none;

  font-weight: 800;

  transition: .3s ease;

}

.newsroom-cinematic-cta:hover {

  background: #C7A94F;
  color: #071523;

}

/* MAIN GRID */

.newsroom-cinematic-grid {

  display: grid;

  grid-template-columns:
    1.18fr .82fr;

  gap: 26px;

  align-items: stretch;

}

/* FEATURED */

.cinematic-featured-story {

  position: relative;

  min-height: 620px;

  border-radius: 34px;

  overflow: hidden;

}

.cinematic-featured-story img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1.1s ease;

}

.cinematic-featured-story:hover img {

  transform: scale(1.05);

}

.cinematic-featured-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5,11,18,.94),
      rgba(5,11,18,.18)
    );

}

.cinematic-featured-content {

  position: absolute;

  left: 38px;
  right: 38px;
  bottom: 38px;

  color: #fff;

}

.cinematic-featured-content small {

  color: #C7A94F;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .14em;
  text-transform: uppercase;

}

.cinematic-featured-content h3 {

  margin:
    18px 0 14px;

  font-size:
    clamp(2rem, 3vw, 3rem);

  line-height: 1.04;

  letter-spacing: -.04em;

}

.cinematic-featured-content p {

  max-width: 620px;

  color:
    rgba(255,255,255,.76);

  line-height: 1.8;

}

.cinematic-featured-content a {

  display: inline-flex;

  margin-top: 24px;

  color: #C7A94F;

  font-weight: 900;

  text-decoration: none;

}

/* SIDE STORIES */

.cinematic-side-stories {

  display: flex;
  flex-direction: column;

  gap: 18px;

}

.cinematic-mini-story {

  display: flex;

  gap: 18px;

  align-items: center;

  padding: 18px;

  border-radius: 28px;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.08);

  transition: .35s ease;

}

.cinematic-mini-story:hover {

  transform: translateY(-4px);

  border-color:
    rgba(199,169,79,.24);

  background:
    rgba(255,255,255,.07);

}

.cinematic-mini-story img {

  width: 150px;
  height: 140px;

  border-radius: 22px;

  object-fit: cover;

  flex-shrink: 0;

}

.mini-story-copy small {

  color: #C7A94F;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .14em;
  text-transform: uppercase;

}

.mini-story-copy h4 {

  margin:
    10px 0 12px;

  color: #fff;

  font-size: 1.18rem;

  line-height: 1.3;

}

.mini-story-copy a {

  color: #fff;

  font-size: .88rem;
  font-weight: 800;

  text-decoration: none;

}

/* MEDIA */

.cinematic-media-zone {

  margin-top:
    clamp(70px, 8vw, 100px);

}

.media-zone-head h3 {

  margin-top: 14px;

  color: #fff;

  font-family:
    "Libre Baskerville",
    serif;

  font-size:
    clamp(1.9rem, 3vw, 3rem);

}


.cinematic-media-strip {

  display: flex;

  flex-direction: row;

  align-items: center;

  gap: 16px;

  overflow-x: auto;

  overflow-y: hidden;

  padding-top: 24px;
  padding-bottom: 10px;

  scrollbar-width: none;

  width: 100%;

}

.cinematic-media-strip::-webkit-scrollbar {

  display: none;

}

/* HORIZONTAL MEDIA CARDS */

.media-strip-card {

  flex: 0 0 auto;

  width: 280px;

  height: 185px;

  border-radius: 18px;

  overflow: hidden;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  transition:
    transform .35s ease,
    border-color .35s ease;

}

.media-strip-card:hover {

  transform: translateY(-4px);

  border-color:
    rgba(199,169,79,.26);

}

.media-lightbox-trigger {

  width: 100%;
  height: 100%;

  border: none;

  padding: 0;

  background: transparent;

  cursor: zoom-in;

}

.media-strip-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform .7s ease;

}

.media-strip-card:hover img {

  transform: scale(1.04);

}

/* MOBILE */

@media(max-width: 768px) {

  .cinematic-media-strip {

    gap: 12px;

    padding-top: 18px;

  }

  .media-strip-card {

    width: 230px;

    height: 155px;

    border-radius: 16px;

  }

}






















/* CLEAN SEPARATED CARDS */






/* RESPONSIVE */

@media(max-width: 1050px) {

  .newsroom-cinematic-grid {

    grid-template-columns: 1fr;

  }

  .cinematic-featured-story {

    min-height: 520px;

  }

}

@media(max-width: 700px) {

  .mehit-newsroom-cinematic {

    padding: 70px 16px;

  }

  .newsroom-cinematic-head {

    flex-direction: column;
    align-items: flex-start;

  }

  .cinematic-featured-story {

    min-height: 420px;

    border-radius: 28px;

  }

  .cinematic-featured-content {

    left: 24px;
    right: 24px;
    bottom: 24px;

  }

  .cinematic-mini-story {

    flex-direction: column;
    align-items: flex-start;

    border-radius: 24px;

  }

  .cinematic-mini-story img {

    width: 100%;
    height: 220px;

  }

  .media-strip-card {

    min-width: 260px;
    height: 190px;

  }

}

















  .media-lightbox-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2,6,12,.88);
}

.media-lightbox.show {
  display: flex;
}

.media-lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 20px;
}

.media-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: #071523;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}







.mehit-3d-partners {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(199,169,79,.16), transparent 30%),
    linear-gradient(180deg, #071523 0%, #050B12 100%);
  padding: clamp(90px, 10vw, 140px) clamp(18px, 6vw, 95px);
  font-family: Rubik, Inter, Arial, sans-serif;
}

/* HEAD */

.mehit-3d-partners-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.mehit-3d-partners-head span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.mehit-3d-partners-head h2 {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .96;
  margin: 20px 0;
}

.mehit-3d-partners-head p {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  max-width: 760px;
  margin: auto;
}

/* STAGE */

.mehit-3d-stage {
  width: 100%;
  perspective: 1200px;
  display: grid;
  place-items: center;
}

/* MAIN */

.mehit-coverflow {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  overflow: visible;
}

/* SLIDES */

.mehit-partner-slide {
  position: absolute;
  width: 220px;
  height: 140px;
  transition:
    transform .7s cubic-bezier(.22,1,.36,1),
    opacity .45s ease,
    filter .45s ease;
  will-change: transform;
}

/* CARD */

.mehit-partner-slide button {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.04)
    );

  border: 1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.mehit-partner-slide button:hover {
  transform: translateY(-6px);
  border-color: rgba(199,169,79,.42);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

/* IMAGE */

.mehit-partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,.08),
      transparent 65%);
}

/* MOBILE */

@media(max-width: 900px) {

  .mehit-coverflow {
    height: 260px;
  }

  .mehit-partner-slide {
    width: 170px;
    height: 110px;
  }

}

@media(max-width: 560px) {

  .mehit-coverflow {
    height: 220px;
  }

  .mehit-partner-slide {
    width: 140px;
    height: 92px;
  }

  .mehit-partner-slide img {
    padding: 18px;
  }

}

.mehit-partner-slide {
  transform-style: preserve-3d;
  cursor: pointer;
}

.mehit-coverflow {
  transform-style: preserve-3d;
  perspective: 1800px;
}








.mehit-3d-partners {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(199,169,79,.16), transparent 30%),
    linear-gradient(180deg, #071523 0%, #050B12 100%);
  padding: clamp(90px, 10vw, 140px) clamp(18px, 6vw, 95px);
  font-family: Rubik, Inter, Arial, sans-serif;
}

/* HEAD */

.mehit-3d-partners-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.mehit-3d-partners-head span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.mehit-3d-partners-head h2 {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .96;
  margin: 20px 0;
}

.mehit-3d-partners-head p {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  max-width: 760px;
  margin: auto;
}

/* STAGE */

.mehit-3d-stage {
  width: 100%;
  perspective: 1200px;
  display: grid;
  place-items: center;
}

/* MAIN */

.mehit-coverflow {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  overflow: visible;
}

/* SLIDES */

.mehit-partner-slide {
  position: absolute;
  width: 220px;
  height: 140px;
  transition:
    transform .7s cubic-bezier(.22,1,.36,1),
    opacity .45s ease,
    filter .45s ease;
  will-change: transform;
}

/* CARD */

.mehit-partner-slide button {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.04)
    );

  border: 1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.mehit-partner-slide button:hover {
  transform: translateY(-6px);
  border-color: rgba(199,169,79,.42);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

/* IMAGE */

.mehit-partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,.08),
      transparent 65%);
}

/* MOBILE */

@media(max-width: 900px) {

  .mehit-coverflow {
    height: 260px;
  }

  .mehit-partner-slide {
    width: 170px;
    height: 110px;
  }

}

@media(max-width: 560px) {

  .mehit-coverflow {
    height: 220px;
  }

  .mehit-partner-slide {
    width: 140px;
    height: 92px;
  }

  .mehit-partner-slide img {
    padding: 18px;
  }

}

.mehit-partner-slide {
  transform-style: preserve-3d;
  cursor: pointer;
}

.mehit-coverflow {
  transform-style: preserve-3d;
  perspective: 1800px;
}











.mehit-facebook-feed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(75px, 8vw, 120px) clamp(18px, 5vw, 88px);
  background:
    radial-gradient(circle at 8% 12%, rgba(199,169,79,0.14), transparent 28%),
    linear-gradient(135deg, #F8F9FA, #ffffff);
  overflow: hidden;
  font-family: Inter, Arial, sans-serif;
}

.mehit-facebook-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.mehit-facebook-header span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(199,169,79,0.14);
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.mehit-facebook-header h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  color: #0D2137;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.mehit-facebook-header p {
  color: #5f6875;
  line-height: 1.7;
}

.mehit-facebook-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.mehit-facebook-copy {
  background: #0D2137;
  color: white;
  border-radius: 32px;
  padding: clamp(30px, 4vw, 52px);
  box-shadow: 0 28px 70px rgba(13,33,55,0.16);
}

.mehit-facebook-copy h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.mehit-facebook-copy p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 28px;
}

.mehit-facebook-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #C7A94F;
  color: #0D2137;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.mehit-facebook-btn:hover {
  background: #e0c16b;
  transform: translateY(-3px);
}

.mehit-facebook-card {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 32px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(13,33,55,0.08);
  box-shadow: 0 28px 70px rgba(13,33,55,0.12);
  overflow: hidden;
}

.mehit-facebook-card .fb-page,
.mehit-facebook-card span,
.mehit-facebook-card iframe {
  max-width: 100% !important;
}

@media(max-width: 900px) {
  .mehit-facebook-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 560px) {
  .mehit-facebook-card {
    padding: 10px;
    border-radius: 22px;
  }

  .mehit-facebook-btn {
    width: 100%;
  }
}







.mehit-final-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  font-family: Rubik, Inter, Arial, sans-serif;
}

/* BACKGROUND */

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ctaZoom 18s ease-in-out infinite alternate;
}

/* OVERLAY */

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,11,18,.95), rgba(5,11,18,.5)),
    radial-gradient(circle at center, rgba(199,169,79,.25), transparent 40%);
}

/* CONTENT */

.cta-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  max-width: 900px;
  margin: auto;
}

/* TEXT */

.cta-content span {
  color: #C7A94F;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cta-content h2 {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1;
  margin: 20px 0;
}

.cta-content p {
  color: rgba(255,255,255,.78);
  max-width: 650px;
  line-height: 1.8;
}

/* BUTTONS */

.cta-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-actions a {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: .3s ease;
}

/* PRIMARY */

.cta-primary {
  background: #C7A94F;
  color: #071523;
  box-shadow: 0 20px 50px rgba(199,169,79,.3);
}

.cta-primary:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

/* SECONDARY */

.cta-secondary {
  border: 1px solid rgba(255,255,255,.3);
  color: #ffffff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  border-color: #C7A94F;
  transform: translateY(-4px);
}

/* ANIMATION */

@keyframes ctaZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* MOBILE */

@media(max-width: 560px) {

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions a {
    width: 100%;
  }

}





