/*-----------------------------------------------------------------------------------
Project Name: MSE | Website: https://www.mseconsultancy.in/
Author: Dileep Dilraj | Website: https://ddai.in
Description: Admissions and Career Guidance in Bangalore
Designer & Developer: Dileep Dilraj
Version: 1.0
File: style.css
Last Update: Mar 2026
Copyright: © 2026 Dileep Dilraj. All Rights Reserved.
-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

/* ================= RESET & PERFORMANCE ================= */
/* ScrollSmoother wrapper */
#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.mse-hp-hero {
  contain: layout style paint;
}

.mse-header {
  contain: layout style;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================= FONTS ================= */
/* Heading font */
@font-face {
  font-family: "Alterwave";
  src: url("../font/Alterwave-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alterwave";
  src: url("../font/Alterwave-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alterwave";
  src: url("../font/Alterwave-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Body font */
@font-face {
  font-family: "Satoshi";
  src: url("../font/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../font/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

/* ================= VARIABLES ================= */
:root {
  --font-heading: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;
  --fw-regular: 300;
  --fw-medium: 500;
  --fw-bold: 700;
  --color-text: #000;
  --color-border: #000;
  --color-bg: #fff;
  --color-light-bg: #f5f5f5;
}

/* ================= GLOBAL TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

h6,
p,
li,
a,
span,
button,
input {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

a {
  text-decoration: none;
}

[data-bs-toggle="modal"],
.cta-btn,
.msc-cors-link-btn,
.mse-home-hero__btn,
.mse-home-cta1__btn {
  cursor: pointer;
}

/* ================= CONTAINERS ================= */
.mse-container {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 15px;
}

.mse-wrap {
  max-width: 1350px;
  margin-inline: auto;
  padding: 20px;
}

/* ================= HEADER OFFSET ================= */
/* Matches total fixed header height at each breakpoint */
:root {
  --header-offset: 112px;
  /* desktop: topbar (34px) + nav (78px) */
}

@media (max-width: 991px) {
  :root {
    --header-offset: 78px;
  }

  /* nav only (no topbar) */
}

@media (max-width: 768px) {
  :root {
    --header-offset: 72px;
  }

  /* nav with 44px logo */
}

@media (max-width: 576px) {
  :root {
    --header-offset: 62px;
  }

  /* smaller padding + 42px logo */
}

.mse-header-offset {
  height: var(--header-offset);
  flex-shrink: 0;
}

/* ================= HEADER ================= */
/* ===== Top Bar ===== */
.mse-topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 7px 0;
  display: flex;
}

.mse-topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mse-topbar-left,
.mse-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
  font-family: var(--font-body);
}

.topbar-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) opacity(0.6);
}

.topbar-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #d1d5db;
}

.topbar-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  font-family: var(--font-body);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-socials a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.topbar-socials a:hover {
  opacity: 0.55;
}

.topbar-socials a img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0);
}

/* ===== Header base (common) ===== */
.mse-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.mse-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mse-logo img {
  height: 60px;
}

.mse-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mse-nav>ul {
  display: flex;
  list-style: none;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.mse-nav a {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mse-nav>ul>li>a:hover {
  color: #2563eb;
}

/* Courses arrow icon */
.nav-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  transition:
    transform 0.25s ease,
    filter 0.2s ease;
  filter: brightness(0);
  position: relative;
  top: -1px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
}

.has-dropdown:hover>a {
  color: #2563eb !important;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(28%) sepia(88%) saturate(1600%) hue-rotate(213deg) brightness(94%);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  min-width: 175px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 9999;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: #4b5563;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-dropdown li a:hover {
  background: #f3f4f6;
  color: #111;
}

/* "All Courses" first item */
.nav-dropdown li:first-child a {
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 4px;
}

.nav-dropdown li:first-child a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

/* Hide on scroll down */
.mse-header.is-hidden {
  transform: translateY(-110%);
}

/* ===== SOLID HEADER ===== */
.mse-header.mse-header--solid {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact button — blue filled pill */
.mse-contact-btn {
  height: 42px;
  padding: 0 22px;
  border-radius: 50px;
  border: 2px solid #0043b7;
  background: #2575ff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.mse-contact-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Mobile toggle */
.mse-menu-toggle {
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: box-shadow 0.25s ease;
}

.mse-menu-toggle:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Small devices tweaks */
@media (max-width: 576px) {
  .mse-header-inner {
    padding: 10px 12px;
  }

  .mse-logo img {
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mse-header {
    transition: none;
  }
}

.mse-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 991px) {
  .mse-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 15px;
    width: 200px;
    z-index: 9999;
  }

  .mse-nav ul {
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .mse-nav.active {
    display: block;
    animation: fadeDown 0.3s ease;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .mse-contact-btn {
    display: none;
  }

  .mse-logo img {
    height: 44px;
  }
}

/* ===== Overlays & Menu (top→bottom drop) ===== */
.mse-menu,
.mse-menu2,
.mse-menu-style {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mse-menu {
  background: #0f0f10;
}

.mse-menu2 {
  background: #4b4b4b;
}

.mse-menu-style {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-menu {
  transition-delay: 0s;
}

.mse-menu2 {
  transition-delay: 0.12s;
}

.mse-menu-style {
  transition-delay: 0.24s;
}

.mse-menu.show,
.mse-menu2.show,
.mse-menu-style.show {
  transform: translateX(0);
}

.mse-menu-style .menu-bg {
  position: absolute;
  width: 80%;
  max-width: 450px;
  align-items: center;
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 0.45s ease 0.3s,
    transform 0.6s ease 0.3s,
    filter 0.45s ease 0.3s;
  pointer-events: none;
}

.mse-menu-style .menu-bg {
  right: 20;
  bottom: 50;
}

.mse-menu-style.show .menu-bg {
  opacity: 0.06;
  filter: blur(0);
  transform: translateY(0) scale(1) rotate(0);
}

.mse-menu-links {
  opacity: 0;
  transition:
    opacity 0.4s ease 0.28s,
    transform 0.5s ease 0.28s;
  text-transform: uppercase;
}

.mse-menu-style.show .mse-menu-links {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.mse-menu-links ul li {
  margin: 10px 0;
  padding-block: 10px;
}

.mse-menu-links ul li a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw + 10px, 54px);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
  display: inline-block;
}

.mse-menu-links ul li a:hover {
  color: #555;
  transform: scale(1.1);
}

.hamburger-menu.mse-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 0;
}

.hamburger-menu.mse-menu-toggle img {
  width: 18px;
  height: 18px;
  display: block;
}

.hamburger-menu.mse-menu-toggle.active {
  border-color: #000;
  background: #fff;
}

@media (max-width: 576px) {
  .mse-header {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }
}



.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 1111111111111111200;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    visibility 0.9s ease;
}

body.is-loading {
  overflow: hidden;
}

.preloader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.preloader * {
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}

.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}



/* ================= Page Header ================= */
.page-header {
  position: relative;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Background image */
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Dark gradient overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #fff 100%);
  z-index: 2;
}

/* Content */
.page-header-content {
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 10px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item.active {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb 2*/
.breadcrumb-item-2 a {
  color: #000;
  text-decoration: none;
  text-shadow: none !important;
}

.breadcrumb-item-2.active {
  color: #000;
  text-shadow: none !important;
}

.breadcrumb-item-2+.breadcrumb-item-2::before {
  color: rgba(0, 0, 0, 0.5);
}

.page-header-content-title {
  color: #000 !important;
  font-family: var(--font-body);
  margin-top: 20px;
  text-shadow: none !important;
}

/* Title */
.page-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 300;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }

  .page-title {
    font-size: 36px;
  }

  .page-header-content {
    padding-bottom: 50px;
  }
}

/* 🖥 Desktop & tablets (up to 1500px) */
@media (min-width: 768px) and (max-width: 1499px) {
  .page-header {
    background-size: contain;
  }
}

/* 🖥🖥 Large screens (1500px and above) */
@media (min-width: 1500px) {
  .page-header {
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .page-header {
    height: 260px;
  }
}

/* =========================
   ESSB - Arenas Hero
   File: mse-arenas-hero.css
========================= */

.mse-arenasHero {
  margin-top: 120px;
  padding: 16px;
}

.mse-arenasHero__wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.mse-arenasHero__card {
  background: #ffffff;
  padding: 100px 25px;
  text-align: center;
  box-shadow: 0 0 15px 0 #c7c7c7 inset;
  position: relative;
  overflow: hidden;
}

/* soft top glow like your design */
.mse-arenasHero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 220px at 50% -40px,
      rgba(0, 0, 0, 0.1),
      transparent 60%);
  opacity: 0.35;
}

/* Title + description */
.mse-arenasHero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 12px;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 700;
  font-family: var(--font-body);
  color: #0b0f19;
  letter-spacing: -0.4px;
}

.mse-arenasHero__desc {
  position: relative;
  z-index: 2;
  margin: 10px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
  color: #333b45;
}

/* Ground image */
.mse-arenasHero__ground {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.mse-arenasHero__groundImg {
  width: min(680px, 92%);
  height: auto;
  display: block;
  transform: translateY(2px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

/* Responsive */
@media (max-width: 768px) {
  .mse-arenasHero {
    margin-top: 80px;
  }

  .mse-arenasHero__card {
    padding: 60px 25px;
    box-shadow: 0 0 10px 0 #c7c7c7 inset;
  }

  .mse-arenasHero__crumbs {
    position: static;
    margin-bottom: 10px;
    text-align: left;
  }

  .mse-arenasHero__title {
    font-size: 30px;
    padding-top: 0;
  }

  .mse-arenasHero__desc {
    font-size: 14px;
    max-width: 520px;
  }
}

.msc-about-video-wrap {
  width: 100%;
  max-width: 520px;
}

.msc-about-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  cursor: pointer;
}

.msc-about-video-el,
.msc-about-playbtn {
  position: absolute;
  inset: 0;
}

.msc-about-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.msc-about-playbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: transparent;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.msc-about-playbtn-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.msc-about-video-box.is-playing .msc-about-playbtn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .msc-about-video-box {
    border-radius: 18px;
  }

  .msc-about-playbtn-inner {
    width: 60px;
    height: 60px;
  }
}

/* ================= CTA SECTION ================= */
.cta-section {
  position: relative;
  background: #3b6ef9;
  overflow: hidden;
  min-height: 340px;
}

.cta-content {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.cta-title strong {
  font-weight: 600;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 38px;
  border-radius: 9999px;
  background: #fff;
  color: #111;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.2);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  color: #111;
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 11px 11px 0 0 rgba(0, 0, 0, 0.2);
}

/* ===== Decorative Visual (right side) ===== */
.cta-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  pointer-events: none;
  z-index: 1;
}

.cta-man {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-48%);
  height: 100%;
  max-height: 290px;
  object-fit: contain;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-section {
    min-height: unset;
  }

  .cta-content {
    padding: 60px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cta-content {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 18px 36px;
    font-size: 15px;
    gap: 12px;
  }
}

/* CTA v2 — card layout */

.cta-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0 48px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Ball clip wrapper — clips the ball but not the logo above */
.cta-ball-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Single football ball */
.cta-ball {
  position: absolute;
  width: 220px;
  height: 220px;
  object-fit: contain;
  left: calc(50% - 110px);
  bottom: -220px;
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  animation: ballSpin 8s linear infinite;
  transition:
    bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.cta-card:hover .cta-ball {
  bottom: -80px;
  opacity: 0.3;
}

.cta-card {
  cursor: pointer;
}

@keyframes ballSpin {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

/* Content sits above the ball wrap */
.cta-card> :not(.cta-ball-wrap) {
  position: relative;
  z-index: 1;
}

.cta-card-logo {
  width: 150px;
  display: block;
  margin: -46px auto 25px;
}

.cta-section--v2 .cta-title {
  margin-bottom: 16px;
}

.cta-section--v2 .cta-subtitle {
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .cta-card {
    padding: 0 24px 40px;
    border-radius: 16px;
  }

  .cta-card-logo {
    width: 140px;
    margin-top: -56px;
  }
}

/* ================= FOOTER ================= */
:root {
  --footer-max: 1300px;
  --footer-accent: #2563eb;
}

.mse-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

/* Main grid — brand left, columns group right */
.mse-footer-inner {
  max-width: var(--footer-max);
  margin: 0 auto;
  padding: 60px 24px 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* Right columns group */
.footer-cols {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

/* Footer brand */
.footer-brand .mse-icon {
  max-width: 200px;
  margin-bottom: 20px;
  display: block;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.6;
}

.footer-socials a img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* Column headings */
.footer-links h6,
.footer-contact h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #111;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}

.footer-links h6::after,
.footer-contact h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 4px;
  background: var(--footer-accent);
  border-radius: 100px;
}

/* Footer links */
.footer-links {
  padding-top: 4px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--footer-accent);
}

/* Contact */
.footer-contact {
  padding-top: 4px;
}

.footer-contact-label {
  font-size: 13px;
  color: #9b9b9b;
  margin-bottom: 6px;
}

.footer-contact-phone {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  transition: color 0.2s ease;
}

.footer-contact-phone:hover {
  color: var(--footer-accent);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #111;
  transition: color 0.2s ease;
}

.contact-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) opacity(0.5);
  transition: filter 0.2s ease;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item:hover a {
  color: var(--footer-accent);
}

.contact-item:hover img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(88%) saturate(1600%) hue-rotate(213deg) brightness(94%);
}

/* ================= FOOTER BOTTOM BAR ================= */
.mse-footer-bottom {
  background: #f3f3f3;
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.mse-footer-bottom-inner {
  max-width: var(--footer-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.mse-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  padding: 0 12px;
  position: relative;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #111;
}

.footer-bottom-links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -1px;
  color: #9ca3af;
}

/* ================= RESPONSIVE FOOTER ================= */
@media (max-width: 991px) {
  .mse-footer-inner {
    flex-direction: column;
    gap: 36px;
    padding: 48px 24px 56px;
  }

  /* About + Quick Links side by side, Contact below */
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .mse-footer-inner {
    padding: 40px 16px 48px;
    gap: 32px;
  }

  .footer-cols {
    gap: 24px;
  }

  .mse-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ---------- CONTACT US PAGE ---------- */
.mse-contact {
  background: #ffffff;
  padding: 5rem 0;
  color: #111;
}

.mse-chip {
  display: none;
}

.mse-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mse-subtext {
  font-size: 1.05rem;
  color: #444;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mse-contact-lines p {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mse-form-card {
  background: #fff;
  padding: 1.8rem;
  box-shadow: 0 0px 50px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.mse-form-title {
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  color: #111;
  margin-bottom: 1rem;
}

.mse-input {
  width: 100%;
  background: #f1f1f1;
  border: 1px solid transparent;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  margin-top: 10px;
  border-radius: 8px;
}

.mse-input:focus {
  outline: none;
  background: #ededed;
}

.mse-input::placeholder {
  color: #777;
}

.mse-input.error {
  border-color: red;
}

.mse-textarea {
  min-height: 140px;
  resize: none;
}

.mse-submit {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.mse-submit:hover,
.mse-submit:focus,
.mse-submit:active {
  background: #1d4ed8;
  color: #fff;
  outline: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Custom course dropdown */
.mse-custom-select {
  position: relative;
  width: 100%;
}

.mse-custom-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mse-custom-select-btn .mse-custom-select-value {
  color: #777;
}

.mse-custom-select-btn.has-value .mse-custom-select-value {
  color: #111;
}

.mse-custom-select-arrow {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

.mse-custom-select.open .mse-custom-select-arrow {
  transform: rotate(180deg);
}

.mse-custom-select-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  z-index: 200;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  overflow: hidden;
}

.mse-custom-select.open .mse-custom-select-list {
  display: block;
}

.mse-custom-select-list li {
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: #111;
  transition: background 0.12s ease;
}

.mse-custom-select-list li:hover {
  background: #f1f1f1;
}

.mse-custom-select-list li.active-option {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 500;
}

/* Contact Page Hero */
.contact-page-hero {
  position: relative;
  background-color: #fff;
  background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
  background-size: 22px 22px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  margin: 32px auto 0;
  overflow: hidden;
  box-shadow: 0 -30px 40px 0 rgba(0, 0, 0, 0.12) inset;
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
}

.contact-page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-page-hero-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .contact-page-hero {
    min-height: 200px;
    margin: 20px auto 0;
    box-shadow: 0 -40px 20px 0 rgba(0, 0, 0, 0.12) inset;
  }

  .contact-page-hero-subtitle {
    font-size: 0.85rem;
  }
}

.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE STYLES ---------- */
/* Tablets (≤ 991px) */
@media (max-width: 991px) {
  .mse-contact {
    padding: 3.5rem 0;
  }

  .mse-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: left;
  }

  .mse-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .mse-form-card {
    margin-top: 2rem;
    padding: 1.6rem;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .mse-contact {
    padding: 3rem 1rem;
  }

  .mse-heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .mse-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .mse-contact-lines p {
    font-size: 0.95rem;
  }

  .mse-form-card {
    width: 100%;
    padding: 1.4rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }

  .mse-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .mse-input {
    font-size: 0.95rem;
    padding: 0.85rem 0.9rem;
  }

  .mse-submit {
    padding: 0.95rem;
    font-size: 0.9rem;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .mse-heading {
    font-size: 1.45rem;
  }

  .mse-subtext {
    font-size: 0.9rem;
  }

  .mse-input {
    padding: 0.8rem;
  }

  .mse-submit {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
}

/* ---------- SITEMAP PAGE ---------- */
.sitemap-section {
  padding: 4rem 0;
  background: #fff;
  color: #111;
}

.sitemap-block {
  margin-bottom: 2.5rem;
}

.sitemap-block .sitemap-title {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase !important;
  margin-bottom: 1.5rem;
}

.sitemap-block .sitemap-title-a {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-heading);
  text-transform: uppercase !important;
  margin-bottom: 1.5rem;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li a {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.6rem;
  text-decoration: none;
  display: inline-block;
}

.sitemap-list li a:hover {
  color: #000;
}

.sitemap-divider {
  border: none;
  border-top: 1px solid #111;
  margin: 2.5rem 0;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.1rem;
  }

  .sitemap-list li {
    font-size: 0.9rem;
  }

  .sitemap-divider {
    margin: 2rem 0;
  }
}

@media (max-width: 576px) {
  .sitemap-section {
    padding: 3rem 1rem;
  }

  .sitemap-title {
    margin-bottom: 1rem;
  }

  .sitemap-list li {
    margin-bottom: 0.5rem;
  }
}

/* ---------- TNC PAGE ---------- */
.mse-tnc-container {
  background-color: #ffffff;
  color: #000000;
  padding: 3rem 1rem;
  border-radius: 8px;
}

.mse-tnc-back-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: #252525;
  padding: 12px 18px;
  border: none;
  text-decoration: none;
  margin-bottom: 2rem;
}

.mse-tnc-back-icon {
  margin-right: 8px;
}

.mse-tnc-back-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.mse-tnc-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.mse-tnc-nav-col {
  flex: 0 0 220px;
  max-width: 220px;
}

.mse-tnc-content-col {
  flex: 1;
  padding-left: 1rem;
}

.mse-tnc-nav .nav-link {
  color: #555555;
  border-radius: 0;
  text-align: left;
  transition: all 0.2s ease-in-out;
  border-left: 2px solid #dcdcdc;
  font-weight: 500;
  padding: 10px 15px;
}

.mse-tnc-nav .nav-link:hover {
  background-color: #f5f5f5;
  color: #000000;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
}

.mse-tnc-nav .nav-link.active {
  background: none;
  color: #000000;
  border-left: 3px solid #000000;
}

.mse-tnc-pane {
  padding: 2rem;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 1rem;
  animation: 0.5s ease-in-out 0s 1 fadeIn;
}

.mse-tnc-list {
  padding-left: 1.2rem;
}

.mse-tnc-date {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #666666;
  font-size: 0.9rem;
}

.mse-tnc-pane h2 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .mse-tnc-row {
    flex-direction: column;
  }

  .mse-tnc-content-col {
    padding-left: 0;
  }

  .mse-tnc-nav-col {
    flex: 0 0 120px;
  }

  .mse-tnc-back-btn {
    margin-bottom: 1rem;
  }
}

/* ---------- Refund Policy PAGE ---------- */
.policy-section {
  background-color: #ffffff;
}

.policy-content {
  max-width: 1200px;
}

.policy-main-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.policy-content h4 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-weight: 300;
  text-transform: capitalize;
  font-family: var(--font-body);
  font-size: 18px;
}

.policy-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.policy-content ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.policy-content ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ---------- SUPPORT CENTER PAGE ---------- */
.faq-section .nav-tabs {
  max-width: 1400px;
  margin: auto;
  border-bottom: 1px solid #cdcdcd;
}

.faq-tabs .nav-link {
  color: #000;
  border: none;
  font-weight: 500;
}

.faq-tabs .nav-link.active {
  border-bottom: 2px solid #000;
}

.faq-accordion {
  max-width: 1400px;
  margin: auto;
}

.faq-item {
  background: #f6f6f6;
  margin-bottom: 14px;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- ESSB GALLERY SECTION ---------- */
.mse-gallery-section {
  padding: 4rem 0 5rem;
}

.mse-gallery-1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

/* BASE BOX */
.mse-gallery-1__box {
  background: #eaeaea;
  overflow: hidden;
  border-radius: 16px;
}

/* SMALL BOXES */
.mse-gallery-1__small {
  height: 300px;
}

/* WIDE BOX */
.mse-gallery-1__wide {
  grid-column: 1 / span 2;
  height: 200px;
}

/* LARGE VIDEO */
.mse-gallery-1__large {
  grid-column: 3;
  grid-row: 1 / span 2;
  height: 520px;
  position: relative;
}

/* ===============================
   VIDEO PLAY BUTTON
================================ */
.mse-gallery-1__video .mse-gallery-1__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
}

.mse-gallery-1__video .mse-gallery-1__play-btn::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  z-index: -1;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
  .mse-gallery-1__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mse-gallery-1__large {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
  }

  .mse-gallery-1__wide {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mse-gallery-1__grid {
    grid-template-columns: 1fr;
  }

  .mse-gallery-1__small,
  .mse-gallery-1__wide,
  .mse-gallery-1__large {
    grid-column: auto;
    height: 220px;
  }
}

/* CONTENT ROW */
.mse-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin: 100px 0;
}

/* TEXT */
.mse-text-content {
  max-width: 580px;
}

.mse-section-heading {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 18px;
}

.mse-section-text {
  line-height: 1.7;
  color: #555;
  font-size: 16px;
}

/* BUTTON */
.mse-btn-primary {
  margin-top: 28px;
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.mse-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.mse-floating-images {
  flex-shrink: 0;
  max-width: 480px;
}

.mse-gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mse-content-row {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .mse-content-row {
    flex-direction: column;
    text-align: center;
    margin: 70px 0;
  }

  .mse-text-content {
    max-width: 100%;
  }

  .mse-floating-images {
    max-width: 480px;
    margin-top: 40px;
  }
}

/* GRID */
.mse-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.mse-testimonial-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 18px;
  text-align: center;
}

/* CARD */
.mse-testimonial-card {
  background: #fff;
  padding: 26px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}

/* Testimonials wrapper spacing */
.mse-gallery-testimonials {
  padding: 4rem 0;
}

/* HEADER */
.mse-testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mse-testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mse-testimonial-user img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: #333;
}

.mse-testimonial-user h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-body);
}

.mse-testimonial-user span {
  font-size: 13px;
  color: #777;
}

/* PLATFORM ICON */
.mse-testimonial-platform {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.mse-platform-google {
  color: #4285f4;
}

.mse-platform-star {
  color: #00c853;
}

.mse-platform-x {
  color: #111;
}

/* DIVIDER */
.mse-testimonial-card hr {
  margin: 18px 0;
  border: none;
  border-top: 1px solid #333;
}

/* TEXT */
.mse-testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mse-testimonials {
    grid-template-columns: 1fr;
  }
}

/* ================================
   ESSB GALLERY 2
================================ */
.mse-gallery-2 {
  margin-top: 0;
  padding-bottom: 2rem;
}

.mse-gallery-2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* LEFT */
.mse-gallery-2__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* RIGHT */
.mse-gallery-2__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mse-gallery-2__right-bottom {
  display: flex;
  gap: 12px;
}

/* ===============================
   IMAGE BASE
================================ */
.mse-gallery-2__img {
  width: 100%;
  background: #eaeaea;
}

.mse-gallery-2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
   DESKTOP – RESPONSIVE & FLEXIBLE
================================ */
.mse-gallery-2__img--left-top {
  aspect-ratio: 57 / 32;
}

.mse-gallery-2__img--left-bottom {
  aspect-ratio: 19 / 8;
}

.mse-gallery-2__img--right-top {
  aspect-ratio: 14 / 5;
}

.mse-gallery-2__img--right-bottom-left,
.mse-gallery-2__img--right-bottom-right {
  aspect-ratio: 3 / 4;
}

/* ===============================
   MOBILE – ALL SQUARE
================================ */
@media (max-width: 768px) {
  .mse-gallery-2__grid {
    grid-template-columns: 1fr;
  }

  .mse-gallery-2__right-bottom {
    flex-direction: column;
  }

  .mse-gallery-2__img {
    aspect-ratio: 1 / 1;
  }
}

/* ---------- BLOGS LIST PAGE ---------- */
.mse-blog-list {
  max-width: 1350px;
  margin: auto;
  padding: 40px 20px;
}

.mse-blog-list__card {
  border: 2px solid #efefef;
  padding: 25px;
}

.mse-blog-list__image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mse-blog-list__card--featured .mse-blog-list__image {
  aspect-ratio: 4 / 3;
}

.mse-blog-list__title {
  padding-top: 20px;
  margin: 0 0 8px;
  font-weight: 300;
}

.mse-blog-list__desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.mse-blog-list__btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  text-decoration: none;
}

/* ===============================
   FEATURED CARD – DESKTOP
================================ */
.mse-blog-list__card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

/* Desktop order: TEXT first, IMAGE second */
.mse-blog-list__content {
  order: 1;
}

.mse-blog-list__image {
  order: 2;
  aspect-ratio: 16 / 9;
  background: #e0e0e0;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .mse-blog-list__card--featured {
    grid-template-columns: 1fr;
  }

  /* Mobile order: IMAGE first, TEXT second */
  .mse-blog-list__image {
    order: 1;
  }

  .mse-blog-list__content {
    order: 2;
  }
}

/* ===============================
   GRID BLOGS
================================ */
.mse-blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
  .mse-blog-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mse-blog-list__card--featured {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mse-blog-list__card--featured {
    display: block;
  }

  .mse-blog-list__grid {
    grid-template-columns: 1fr;
  }

  /* All cards same size on mobile */
  .mse-blog-list__card {
    display: block;
  }

  .mse-blog-list__image {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- BLOGS DETAILS PAGE ---------- */
.mse-blog-d-section {
  padding: 46px 0 70px;
  background: #fff;
  color: #111;
}

.mse-blog-d-container {
  width: min(1300px, calc(100% - 72px));
  margin: 0 auto;
}

/* Breadcrumb */
.mse-blog-d-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #9a9a9a;
  margin-bottom: 18px;
}

.mse-blog-d-breadcrumb a {
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
}

.mse-blog-d-breadcrumb a:hover {
  color: #2575ff;
  text-decoration: none;
}

.mse-blog-d-crumbsep {
  color: #aaa;
  display: flex;
  align-items: center;
}

.mse-blog-d-crumbcurrent {
  color: #2575ff;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 480px;
}

/* Header */
.mse-blog-d-header {
  margin-bottom: 18px;
}

.mse-blog-d-title {
  font-size: clamp(22px, 4vw, 37px);
  line-height: 1.18;
  font-weight: 300;
  margin: 0 0 14px;
}

.mse-blog-d-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  /* was 10px */
}

.mse-blog-d-avatar {
  width: 38px;
  /* was 34px */
  height: 38px;
  border-radius: 50%;
  background: #e6e6e6;
  overflow: hidden;
  flex: 0 0 auto;
}

.mse-blog-d-avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-blog-d-metatext {
  display: grid;
  gap: 3px;
  /* was 2px */
}

.mse-blog-d-author {
  font-size: 16px;
  /* was 13px */
  font-weight: 500;
  color: #111;
}

.mse-blog-d-submeta {
  font-size: 15px;
  /* was 12px */
  color: #9a9a9a;
  display: flex;
  align-items: center;
  gap: 10px;
  /* was 8px */
}

.mse-blog-d-dot {
  opacity: 0.9;
}

/* Hero */
.mse-blog-d-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 0 0 28px;
  background: #e9e9e9;
  overflow: hidden;
  border-radius: 16px;
}

.mse-blog-d-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills hero without distortion */
  object-position: center;
  display: block;
}

/* Content typography */
.mse-blog-d-content {
  font-size: 16px;
  /* was 14px */
  line-height: 1.85;
  color: #4a4a4a;
}

.mse-blog-d-content h2 {
  font-size: 18px;
  /* was 16px */
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
  font-family: var(--font-body) !important;
}

.mse-blog-d-content h3 {
  font-size: 17px;
  /* was 15px */
  font-weight: 600;
  color: #111;
  margin: 22px 0 14px;
  font-family: var(--font-body) !important;
}

.mse-blog-d-content h4 {
  font-size: 16px;
  /* was 14px */
  font-weight: 600;
  color: #111;
  margin: 18px 0 12px;
  font-family: var(--font-body) !important;
}

.mse-blog-d-content p {
  margin: 0 0 16px;
}

.mse-blog-d-content ul {
  margin: 12px 0 18px 22px;
  padding: 0;
}

.mse-blog-d-content li {
  margin: 8px 0;
}

/* Quote block */
.mse-blog-d-quote {
  border-left: 4px solid #2575ff;
  background: transparent;
  margin: 28px 0;
  padding: 14px 24px;
  color: #2575ff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

/* Inline image */
.mse-blog-d-inlineimg {
  width: 100%;
  height: 240px;
  background: #e9e9e9;
  margin: 20px 0 26px;
}

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
  .mse-blog-d-container {
    width: calc(100% - 48px);
  }

  .mse-blog-d-section {
    padding: 36px 0 56px;
  }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  .mse-blog-d-container {
    width: calc(100% - 32px);
  }

  .mse-blog-d-section {
    padding: 24px 0 44px;
  }

  .mse-blog-d-hero {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin: 0 0 22px;
  }

  .mse-blog-d-topmeta {
    gap: 12px;
    margin-bottom: 12px;
  }

  .mse-blog-d-topmetaitem {
    font-size: 13px;
  }

  .mse-blog-d-content {
    font-size: 15px;
    line-height: 1.75;
  }

  .mse-blog-d-content h2 {
    font-size: 17px;
  }

  .mse-blog-d-content h3 {
    font-size: 16px;
  }

  .mse-blog-d-content .mse-blog-d-iconlist li {
    font-size: 15px;
  }

  .mse-blog-d-tags-wrap {
    margin: 22px 0 18px;
  }

  .mse-blog-d-authorcard {
    padding: 20px;
    gap: 16px;
  }

  .mse-blog-d-authorname {
    font-size: 16px;
  }

  .mse-blog-d-related {
    margin-top: 36px;
    padding-top: 28px;
  }

  .mse-blog-d-related-title {
    font-size: 18px;
  }

  .mse-blog-d-related-header {
    margin-bottom: 20px;
  }
}

/* Top meta (date · author · readtime) */
.mse-blog-d-topmeta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.mse-blog-d-topmetaitem {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}

/* Icon bullet list */
.mse-blog-d-content .mse-blog-d-iconlist {
  list-style: none;
  margin: 16px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mse-blog-d-content .mse-blog-d-iconlist li {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.mse-blog-d-content .mse-blog-d-iconlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #2575ff;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Tags */
.mse-blog-d-tags-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.mse-blog-d-tagslabel {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.mse-blog-d-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: 50px;
  background: #2575ff;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.mse-blog-d-tag:hover {
  background: #1d4ed8;
  color: #fff;
}

/* Divider */
.mse-blog-d-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0 0 28px;
}

/* Author card */
.mse-blog-d-authorcard {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fafafa;
}

.mse-blog-d-authoravatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e6e6e6;
  flex-shrink: 0;
  overflow: hidden;
}

.mse-blog-d-authorbody {
  flex: 1;
  min-width: 0;
}

.mse-blog-d-authorlabel {
  font-size: 13px;
  color: #2575ff;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.mse-blog-d-authorname {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin: 0 0 8px;
  font-family: var(--font-body) !important;
}

.mse-blog-d-authorbio {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Small mobile (≤ 575px) ── */
@media (max-width: 575px) {
  .mse-blog-d-container {
    width: calc(100% - 24px);
  }

  .mse-blog-d-authorcard {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .mse-blog-d-authoravatar {
    width: 64px;
    height: 64px;
  }

  .mse-blog-d-authorbio {
    font-size: 13px;
  }

  .mse-blog-d-tag {
    padding: 5px 16px;
    font-size: 13px;
  }
}

/* Related blogs */
.mse-blog-d-related {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.mse-blog-d-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.mse-blog-d-related-title {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin: 0;
  font-family: var(--font-body) !important;
}

.mse-blog-d-related-all {
  font-size: 14px;
  color: #2575ff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    gap 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.mse-blog-d-related-all:hover {
  gap: 9px;
  color: #1d4ed8;
}

/* ---------- OUR COACHES PAGE ---------- */
.mse-Coaches-title {
  font-weight: 300;
  letter-spacing: 1px;
  color: #222;
}

.mse-Coaches-viewport {
  overflow: hidden;
  width: 100%;
  outline: none;
  padding: 10px 0;
}

.mse-Coaches-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transform: translateX(0);
}

.mse-Coaches-track.is-animating {
  will-change: transform;
}

.mse-Coaches-card {
  flex: 0 0 auto;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mse-Coaches-img {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mse-Coaches-meta {
  background: #e8e8e8;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: start;
}

.mse-Coaches-role {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #333;
  margin: 0;
}

.mse-Coaches-name {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  margin: 0;
}

.mse-Coaches-card:hover,
.mse-Coaches-card:focus-within {
  border-color: #d9b24a;
}

.mse-Coaches-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background-clip: padding-box;
}

.mse-Coaches-arrow:hover {
  transform: translateY(-50%) scale(1.2);
  border: 1px solid #d9b24a;
}

.mse-Coaches-arrow:active {
  transform: translateY(-50%) scale(1);
}

.mse-Coaches-arrow-left {
  left: -22px;
}

.mse-Coaches-arrow-right {
  right: -22px;
}

.mse-Coaches-arrow-icon {
  display: inline-block;
  font-size: 28px;
  color: var(--accent, #d9b24a);
  line-height: 1;
  font-weight: 700;
  user-select: none;
}

.mse-Coaches-arrow:focus {
  outline: 3px solid rgba(211, 158, 0, 0.18);
}

@media (max-width: 1199px) {
  .mse-Coaches-card {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .mse-Coaches-track {
    gap: 10px;
  }

  .mse-Coaches-card {
    width: 160px;
    margin: 0;
  }

  .mse-Coaches-meta {
    padding: 10px 8px;
  }

  .mse-Coaches-role {
    font-size: 0.82rem;
    letter-spacing: 0.3px;
  }

  .mse-Coaches-name {
    font-size: 0.78rem;
  }

  .mse-Coaches-arrow-left {
    left: 6px;
  }

  .mse-Coaches-arrow-right {
    right: 6px;
  }
}

/* ---------- ABOUT US PAGE ---------- */
.mse-about-section {
  padding: 56px 0;
  background: #fff;
  color: #111;
}

.mse-about-container {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

.mse-about-card {
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 34px;
}

.mse-about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 34px;
  align-items: start;
}

.mse-about-media {
  background: #e9e9e9;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 380px;
  position: relative;
  cursor: pointer;
  outline: none;
}

.mse-about-media:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.mse-about-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
}

.mse-about-play-triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #111;
  transform: translateX(2px);
}

.mse-about-title {
  margin: 0 0 14px;
  font-size: 44px;
  letter-spacing: 1px;
  font-weight: 300;
}

.mse-about-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.55;
  color: #2b2b2b;
}

.mse-about-text:last-child {
  margin-bottom: 0;
}

.mse-about-stats {
  margin-top: 26px;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mse-about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mse-about-stat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-about-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mse-about-stat-body {
  min-width: 0;
}

.mse-about-stat-value {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  color: #111;
  white-space: nowrap;
}

.mse-about-stat-label {
  margin-top: 4px;
  font-size: 14px;
  color: #6b6b6b;
}

.mse-about-divider {
  width: 1px;
  height: 44px;
  background: #e0e0e0;
}

/* Mobile: icon hidden via d-none, so center value+label as a column */
@media (max-width: 767px) {
  .mse-about-section {
    padding-bottom: 0;
  }

  .mse-about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .mse-about-divider {
    width: 60px;
    height: 1px;
  }

  .mse-about-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mse-about-stat-value {
    font-size: 26px;
  }

  .mse-about-stat-label {
    font-size: 11px;
  }

  .mse-about-text {
    font-size: 15px;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .mse-about-grid {
    grid-template-columns: 360px 1fr;
    gap: 26px;
  }

  .mse-about-title {
    font-size: 38px;
  }
}

@media (max-width: 820px) {
  .mse-about-card {
    padding: 20px 16px;
  }

  .mse-about-grid {
    grid-template-columns: 1fr;
  }

  .mse-about-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .mse-about-title {
    font-size: 34px;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .mse-about-container {
    width: min(1100px, calc(100% - 28px));
  }

  .mse-about-title {
    font-size: 30px;
  }

  .mse-about-stat-value {
    font-size: 30px;
  }
}

.mse-choose-section {
  padding: 54px 0 70px;
  background: #fff;
  color: #111;
}

.mse-choose-container {
  width: min(1300px, calc(100% - 64px));
  margin: 0 auto;
}

.mse-choose-title {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 0 22px;
}

.mse-choose-title--spaced {
  margin-top: 56px;
}

.mse-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mse-choose-card {
  background: #fff;
  border: 1px solid #ededed;
  padding: 18px;
}

.mse-choose-thumb {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  overflow: hidden;
  background: transparent;
  /* remove grey */
}

.mse-choose-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* fills nicely */
  object-position: center;
}

.mse-choose-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mse-choose-card-title {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

.mse-choose-card-desc {
  margin: 0;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.4;
}

.mse-awards-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #ededed;
  background: #fff;
}

.mse-awards-card {
  border-right: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.mse-awards-card:last-child {
  border-right: none;
}

.mse-awards-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 18px 18px;
}

.mse-awards-img {
  width: 120px;
  height: auto;
  max-width: 100%;
  display: block;
}

.mse-awards-meta {
  padding: 18px 18px 22px;
}

.mse-awards-season {
  font-size: 12px;
  letter-spacing: 1px;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.mse-awards-name {
  font-size: 26px;
  font-weight: 600;
  color: #111;
}

@media (max-width: 1100px) {
  .mse-choose-title {
    font-size: 38px;
  }

  .mse-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mse-awards-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .mse-awards-card:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 700px) {
  .mse-choose-container {
    width: min(1200px, calc(100% - 28px));
  }

  .mse-choose-title {
    font-size: 30px;
  }

  .mse-choose-grid {
    grid-template-columns: 1fr;
  }

  .mse-choose-thumb {
    height: 225px;
  }

  .mse-awards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .mse-awards-card {
    min-height: 320px;
  }

  .mse-awards-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 420px) {
  .mse-awards-wrap {
    grid-template-columns: 1fr;
  }

  .mse-awards-card {
    border-right: none;
  }
}

/* ---------- ESSB Store PAGE ---------- */
.mse-shop-section {
  padding: 54px 0;
  background: #fff;
}

.mse-shop-container {
  width: min(1300px, calc(100% - 64px));
  margin: 0 auto;
}

.mse-shop-card {
  background: #f2f2f2;
  padding: 54px 56px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mse-shop-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.mse-shop-img img {
  width: min(280px, 80%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.08));
}

.mse-shop-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.mse-shop-name {
  margin: 0 0 10px;
  font-size: 40px;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #111;
}

.mse-shop-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.mse-shop-price-new {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.mse-shop-price-old {
  font-size: 20px;
  color: #e02020;
  text-decoration: line-through;
  font-weight: 500;
}

.mse-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  min-width: 180px;
}

.mse-shop-btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .mse-shop-card {
    padding: 44px 34px;
    min-height: 480px;
  }

  .mse-shop-name {
    font-size: 34px;
  }

  .mse-shop-btn {
    font-size: 20px;
    min-width: 200px;
  }
}

@media (max-width: 680px) {
  .mse-shop-container {
    width: min(1200px, calc(100% - 28px));
  }

  .mse-shop-card {
    padding: 34px 22px;
    min-height: 520px;
  }

  .mse-shop-img img {
    width: min(360px, 60%);
  }

  .mse-shop-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .mse-shop-name {
    font-size: 30px;
  }

  .mse-shop-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 22px;
    font-size: 20px;
  }
}

.mse-store-section {
  padding: 60px 0 80px;
  background: #fff;
  color: #111;
}

.mse-store-container {
  width: min(1300px, calc(100%));
  margin: 0 auto;
}

.mse-store-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.mse-store-title {
  margin: 0;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 1px;
}

.mse-store-nav {
  display: flex;
  gap: 10px;
}

.mse-store-navbtn {
  width: 58px;
  height: 52px;
  border: 1px solid #e6e6e6;
  background: #e9e9e9;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mse-store-navbtn:hover {
  filter: brightness(0.98);
}

.mse-store-viewport {
  overflow: hidden;
  width: 100%;
}

.mse-store-track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  transform: translateX(0);
  transition: transform 700ms cubic-bezier(0.22, 0.9, 0.32, 1);
}

.mse-store-card {
  position: relative;
  flex: 0 0 auto;
  width: 360px;
  border: 1px solid #111;
  background: #fff;
}

.mse-store-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #e5391e;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 8px 12px;
}

.mse-store-img {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
}

.mse-store-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mse-store-bottom {
  border-top: 1px solid #111;
  padding: 18px 18px 16px;
}

.mse-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.mse-store-name {
  font-size: 26px;
  font-weight: 400;
}

.mse-store-price {
  font-size: 26px;
  font-weight: 400;
}

.mse-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.mse-store-btn:hover {
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .mse-store-title {
    font-size: 44px;
  }

  .mse-store-track {
    gap: 28px;
  }

  .mse-store-card {
    width: 320px;
  }

  .mse-store-img {
    height: 380px;
  }
}

@media (max-width: 820px) {
  .mse-store-container {
    width: min(1200px, calc(100% - 28px));
  }

  .mse-store-title {
    font-size: 34px;
  }

  .mse-store-navbtn {
    width: 52px;
    height: 48px;
  }

  .mse-store-card {
    width: 280px;
  }

  .mse-store-img {
    height: 340px;
  }

  .mse-store-name,
  .mse-store-price {
    font-size: 22px;
  }

  .mse-store-btn {
    height: 52px;
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .mse-store-head {
    align-items: flex-start;
  }

  .mse-store-title {
    font-size: 30px;
  }

  .mse-store-card {
    width: 260px;
  }

  .mse-store-img {
    height: 320px;
  }
}

.mse-shop-hero-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
}

.mse-shop-hero-left,
.mse-shop-hero-right {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.mse-shop-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-shop-hero-gloves {
  position: relative;
  z-index: 2;
  width: min(520px, 80%);
  height: auto;
  display: block;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.mse-shop-hero-content {
  position: relative;
  z-index: 3;
  padding: 54px 52px;
  max-width: 560px;
}

.mse-shop-hero-title {
  margin: 0 0 34px;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 1px;
  color: #111;
}

.mse-shop-hero-sub {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.mse-shop-hero-kicker {
  font-size: 18px;
  color: #333;
}

.mse-shop-hero-product {
  font-size: 30px;
  font-weight: 400;
  color: #111;
}

.mse-shop-hero-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  width: fit-content;
}

.mse-shop-hero-btn:hover {
  opacity: 0.92;
}

.mse-shop-hero-keeper {
  position: absolute;
  right: 44px;
  bottom: 18px;
  width: min(360px, 42%);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
  .mse-shop-hero-wrap {
    min-height: 380px;
  }

  .mse-shop-hero-left,
  .mse-shop-hero-right {
    min-height: 380px;
  }

  .mse-shop-hero-content {
    padding: 44px 36px;
  }

  .mse-shop-hero-title {
    font-size: 56px;
  }

  .mse-shop-hero-product {
    font-size: 34px;
  }

  .mse-shop-hero-keeper {
    right: 26px;
    width: min(320px, 44%);
  }
}

@media (max-width: 900px) {
  .mse-shop-hero-wrap {
    grid-template-columns: 1fr;
  }

  .mse-shop-hero-left {
    min-height: 340px;
  }

  .mse-shop-hero-right {
    min-height: 420px;
  }

  .mse-shop-hero-gloves {
    width: min(520px, 86%);
    top: 50%;
  }

  .mse-shop-hero-content {
    max-width: none;
    padding: 40px 28px 140px;
  }

  .mse-shop-hero-keeper {
    right: 20px;
    bottom: 10px;
    width: min(320px, 56%);
  }
}

@media (max-width: 520px) {
  .mse-shop-hero-wrap {
    width: min(1280px, calc(100% - 20px));
  }

  .mse-shop-hero-left {
    min-height: 280px;
  }

  .mse-shop-hero-right {
    min-height: 420px;
  }

  .mse-shop-hero-title {
    font-size: 42px;
  }

  .mse-shop-hero-product {
    font-size: 26px;
  }

  .mse-shop-hero-btn {
    height: 52px;
    padding: 0 26px;
    font-size: 18px;
  }

  .mse-shop-hero-keeper {
    right: 12px;
    width: min(260px, 62%);
  }
}

/* ---------- ESSB PRODUCT DETAILS PAGE ---------- */
/* Page base */
.mse-shop-p-page {
  width: min(1300px, calc(100% - 44px));
  margin: 0 auto;
  margin-top: 80px;
  padding: 28px 18px 60px;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: #111;
}

.mse-shop-p-breadcrumb {
  font-size: 14px;
  color: #8a8a8a;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.mse-shop-p-breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.mse-shop-p-breadcrumb a:hover {
  text-decoration: underline;
}

.mse-shop-p-bc-active {
  color: #111;
}

/* Top layout */
.mse-shop-p-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

/* Gallery */
/* =========================
   Gallery (fixed)
   ========================= */
.mse-shop-p-gallery {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
}

.mse-shop-p-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mse-shop-p-thumb {
  width: 96px;
  height: 96px;
  border: 1px solid #2a2a2a;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.mse-shop-p-thumb img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}

.mse-shop-p-thumb.is-active {
  border-color: #111 !important;
  outline: 2px solid #111 !important;
}

.mse-shop-p-mainimgwrap {
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* prevents giant image overflow */
}

.mse-shop-p-mainimg {
  max-width: 520px;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* =========================
   Mobile / Tablet
   ========================= */
@media (max-width: 980px) {
  .mse-shop-p-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mse-shop-p-mainimgwrap {
    order: 1;
    min-height: 340px;
    max-height: 420px;
  }

  .mse-shop-p-mainimg {
    max-width: 100%;
    max-height: 420px;
  }

  .mse-shop-p-thumbs {
    order: 2;
    flex-direction: row;
    gap: 12px;
    /* smooth horizontal strip */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 10px;
    /* hide “ugly” scrollbar space */
    scrollbar-width: none;
    /* Firefox */
  }

  .mse-shop-p-thumbs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .mse-shop-p-thumb {
    width: 86px;
    height: 86px;
    scroll-snap-align: start;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .mse-shop-p-mainimgwrap {
    min-height: 300px;
    max-height: 360px;
  }

  .mse-shop-p-thumb {
    width: 78px;
    height: 78px;
    padding: 8px;
  }
}

/* Info */
.mse-shop-p-info {
  padding-top: 8px;
}

.mse-shop-p-title {
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  font-weight: 300;
  /* requested */
  text-transform: uppercase;
}

.mse-shop-p-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.mse-shop-p-price-now {
  font-size: 24px;
  font-weight: 700;
}

.mse-shop-p-price-old {
  font-size: 18px;
  color: #d50000;
  text-decoration: line-through;
}

.mse-shop-p-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 14px;
  max-width: 420px;
}

.mse-shop-p-meta {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}

.mse-shop-p-meta-row {
  font-size: 13px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mse-shop-p-meta-k {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.mse-shop-p-meta-v {
  color: #555;
}

.mse-shop-p-buybtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.3px;
  border: 1px solid #111;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.mse-shop-p-buybtn:hover {
  transform: translateY(-1px);
  background: #000;
}

/* Tabs */
.mse-shop-p-tabs {
  margin-top: 42px;
}

.mse-shop-p-tabbar {
  display: flex;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mse-shop-p-tabbar::-webkit-scrollbar {
  display: none;
}

.mse-shop-p-tab {
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  font-size: 18px;
  color: #9a9a9a;
  font-weight: 500;
  position: relative;
}

.mse-shop-p-tab.is-active {
  color: #111;
}

.mse-shop-p-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 120px;
  max-width: 100%;
  height: 2px;
  background: #111;
}

.mse-shop-p-tabpanes {
  padding-top: 18px;
}

.mse-shop-p-pane {
  display: none;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.mse-shop-p-pane.is-active {
  display: block;
}

.mse-shop-p-bullets {
  margin: 0;
  padding-left: 18px;
}

.mse-shop-p-bullets li {
  margin: 8px 0;
}

.mse-shop-p-review {
  border: 1px solid #ededed;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.mse-shop-p-review-name {
  font-weight: 700;
  margin-bottom: 6px;
}

.mse-shop-p-review-text {
  color: #444;
}

/* Responsive */
@media (max-width: 980px) {
  .mse-shop-p-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mse-shop-p-gallery {
    grid-template-columns: 1fr;
  }

  .mse-shop-p-thumbs {
    flex-direction: row;
    order: 2;
    overflow: auto;
    padding-bottom: 6px;
  }

  .mse-shop-p-thumb {
    flex: 0 0 auto;
  }

  .mse-shop-p-mainimgwrap {
    order: 1;
    min-height: 320px;
  }

  .mse-shop-p-title {
    font-size: 44px;
  }
}

@media (max-width: 520px) {
  .mse-shop-p-title {
    font-size: 36px;
  }

  .mse-shop-p-tabbar {
    gap: 14px;
    overflow: auto;
  }

  .mse-shop-p-tab {
    font-size: 16px;
    white-space: nowrap;
  }

  .mse-shop-p-tab.is-active::after {
    width: 90px;
  }
}

/* =========================
   ESSB Store CTA (Promo Video)
   ========================= */
.mse-shop-cta {
  width: 100%;
  padding: 0;
}

.mse-shop-cta-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 0;
}

/* Background image */
.mse-shop-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Overlay */
.mse-shop-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.25) 100%);
}

/* Content row */
.mse-shop-cta-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 56px 64px;
}

/* Title */
.mse-shop-cta-title {
  margin: 0;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 64px);
  max-width: 520px;
}

/* Play link */
.mse-shop-cta-play {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  /* Changed from center to flex-start */
  text-decoration: none;
  outline: none;
}

/* Circle */
.mse-shop-cta-play-circle {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

/* Triangle */
.mse-shop-cta-play-tri {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(2px);
}

/* Hover / focus */
.mse-shop-cta-play:hover .mse-shop-cta-play-circle {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.22);
}

.mse-shop-cta-play:focus-visible .mse-shop-cta-play-circle {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .mse-shop-cta-content {
    padding: 44px 28px;
  }

  .mse-shop-cta-title {
    max-width: 420px;
  }

  .mse-shop-cta-play-circle {
    width: 78px;
    height: 78px;
  }

  .mse-shop-cta-play-tri {
    border-left-width: 16px;
    border-top-width: 11px;
    border-bottom-width: 11px;
  }
}

@media (max-width: 640px) {

  .mse-shop-cta-wrap,
  .mse-shop-cta-content {
    min-height: 260px;
  }

  .mse-shop-cta-content {
    padding: 34px 18px;
    align-items: flex-end;
  }

  .mse-shop-cta-title {
    font-size: clamp(34px, 7vw, 52px);
    line-height: 0.98;
  }

  .mse-shop-cta-play-circle {
    width: 68px;
    height: 68px;
  }
}

/* ---------- AWARDS PAGE (Adjusted to match screenshot) ---------- */
.mse-ach-section {
  padding: 56px 0 80px;
  background: #fff;
  color: #111;
}

.mse-ach-container {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

/* Layout wrapper */
.mse-ach-awards {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 22px;
}

/* Card */
.mse-ach-award {
  background: #fff;
  /* screenshot looks white */
  padding: 0;
  /* remove grey padding look */
  display: block;
  text-align: center;
  min-height: unset;
}

/* Image wrapper */
.mse-ach-award-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f2f2f2;
  /* subtle frame like screenshot */
}

/* Wide banner */
.mse-ach-award--wide .mse-ach-award-img {
  aspect-ratio: 16 / 5;
  /* wide banner feel */
}

/* Bottom images */
.mse-ach-awards-grid {
  display: grid;
  gap: 26px;
}

.mse-ach-awards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Make images cover nicely like screenshot */
.mse-ach-award-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay title on banner */
.mse-ach-award-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  display: flex;
  justify-content: center;
}

.mse-ach-award-overlay span {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .mse-ach-awards-grid--2 {
    grid-template-columns: 1fr;
  }

  .mse-ach-award--wide .mse-ach-award-img {
    aspect-ratio: 16 / 7;
  }
}

.mse-ach-gallery {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.mse-ach-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #e6e6e6;
  background: #efefef;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mse-ach-viewport {
  overflow: hidden;
  width: 100%;
}

.mse-ach-track {
  display: flex;
  gap: 26px;
  transform: translateX(0);
  transition: transform 700ms cubic-bezier(0.22, 0.9, 0.32, 1);
}

.mse-ach-track {
  display: flex;
  gap: 16px;
  /* optional spacing */
}

.mse-ach-slide {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  overflow: hidden;
}

/* make slide content a proper image */
.mse-ach-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* fills like background-cover */
  object-position: center;
}

@media (max-width: 980px) {
  .mse-ach-title {
    font-size: 36px;
  }

  .mse-ach-awards-grid {
    gap: 18px;
  }

  .mse-ach-slide {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 760px) {
  .mse-ach-container {
    width: min(1100px, calc(100% - 28px));
  }

  .mse-ach-awards-grid {
    grid-template-columns: 1fr;
  }

  .mse-ach-award {
    min-height: 160px;
  }

  .mse-ach-title {
    font-size: 30px;
    margin-top: 26px;
  }

  .mse-ach-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .mse-ach-cell--year {
    text-align: left;
    color: #6b6b6b;
  }

  .mse-ach-gallery {
    grid-template-columns: 40px 1fr 40px;
    gap: 12px;
  }

  .mse-ach-track {
    gap: 16px;
  }

  .mse-ach-slide {
    width: 240px;
    height: 180px;
  }
}

/* ---------- SPONSORSHIPS PAGE ---------- */
.mse-sponsor-section {
  padding: 56px 0 80px;
  background: #fff;
  color: #111;
}

.mse-sponsor-container {
  width: min(1300px, calc(100% - 56px));
  margin: 0 auto;
}

.mse-sponsor-title {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 300;
  color: #111;
}

.mse-sponsor-emoji {
  font-size: 20px;
}

.mse-sponsor-p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #222;
}

.mse-sponsor-h {
  margin: 18px 0 10px;
  font-size: 20px;
  font-weight: 300;
  color: #111;
}

.mse-sponsor-list {
  margin: 0 0 14px 18px;
  padding: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #222;
}

.mse-sponsor-list li {
  margin: 3px 0;
}

.mse-sponsor-list--plain {
  list-style: disc;
}

.mse-sponsor-strong {
  margin: 18px 0 18px;
  font-size: 15px;
  font-weight: 400;
  color: #111;
}

.mse-sponsor-visuals {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding: 10px 0 22px;
  flex-wrap: wrap;
}

.mse-sponsor-visual {
  width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
}

.mse-sponsor-gallery {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.mse-sponsor-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #e6e6e6;
  background: #efefef;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mse-sponsor-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.mse-sponsor-viewport:active {
  cursor: grabbing;
}

.mse-sponsor-track {
  display: flex;
  gap: 22px;
  transform: translateX(0);
  transition: transform 700ms cubic-bezier(0.22, 0.9, 0.32, 1);
}

.mse-sponsor-slide {
  flex: 0 0 auto;
  width: 310px;
  height: 210px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.mse-sponsor-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.mse-sponsor-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mse-sponsor-slide:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .mse-sponsor-container {
    width: min(1080px, calc(100% - 28px));
  }

  .mse-sponsor-visuals {
    gap: 18px;
  }

  .mse-sponsor-visual {
    width: 140px;
  }

  .mse-sponsor-slide {
    width: 270px;
    height: 190px;
  }
}

@media (max-width: 650px) {
  .mse-sponsor-title {
    font-size: 22px;
  }

  .mse-sponsor-visuals {
    justify-content: center;
    gap: 16px;
  }

  .mse-sponsor-visual {
    width: 120px;
  }

  .mse-sponsor-gallery {
    grid-template-columns: 40px 1fr 40px;
    gap: 12px;
  }

  .mse-sponsor-track {
    gap: 14px;
  }

  .mse-sponsor-slide {
    width: 240px;
    height: 180px;
  }
}

/* ---------- ARENAS LIST PAGE ---------- */
.mse-arenas-section {
  padding: 42px 0 70px;
  background: #fff;
  color: #111;
}

.mse-arenas-container {
  width: min(1300px, calc(100% - 56px));
  margin: 0 auto;
}

.mse-arenas-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.mse-arenas-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mse-arenas-filterlabel {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.mse-arenas-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mse-arenas-page-description {
  color: #fff;
}

/* "Centers In" text */
.mse-arenas-filterlabel {
  font-size: 28px;
  /* reduced */
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #111;
}

/* select wrapper */
.mse-arenas-selectwrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid #7d7d7d;
}

/* dropdown */
.mse-arenas-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 135px;
  /* requested width */
  background: #efefef;
  border: none;
  padding: 10px 52px 10px 18px;
  font-size: 24px;
  /* reduced font */
  font-weight: 500;
  line-height: 1.1;
  color: #111;
  cursor: pointer;
}

/* caret */
.mse-arenas-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 24px;
  color: #111;
}

/* Mobile */
@media (max-width: 600px) {
  .mse-arenas-filterlabel {
    font-size: 22px;
  }

  .mse-arenas-select {
    width: 220px;
    font-size: 20px;
    padding: 10px 44px 10px 14px;
  }

  .mse-arenas-caret {
    font-size: 14px;
  }
}

.mse-arenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
}

.mse-arenas-card,
.mse-arenas-soon {
  border: 1px solid #e6e6e6;
  background: #fff;
}

.mse-arenas-media {
  background: #fff;
  padding: 18px 18px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.mse-arenas-media img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.95;
}

.mse-arenas-meta {
  background: #e9e9e9;
  padding: 18px 18px 16px;
}

.mse-arenas-name {
  margin: 0 0 6px;
  font-size: 24px !important;
  font-weight: 300 !important;
}

.mse-arenas-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #222;
  font-size: 14px;
}

.mse-arenas-pin {
  font-size: 14px;
  line-height: 1;
}

.mse-arenas-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  border: 1px solid #222;
  background: transparent;
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.mse-arenas-btn:hover {
  background: #111;
  color: #fff;
}

.mse-arenas-soon {
  background: #e9e9e9;
  min-height: 365px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mse-arenas-sooninner {
  text-align: center;
  max-width: 320px;
}

.mse-arenas-soontitle {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 300;
}

.mse-arenas-soonloc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #222;
}

.mse-arenas-card.is-hidden,
.mse-arenas-soon.is-hidden {
  display: none;
}

@media (max-width: 1100px) {
  .mse-arenas-grid {
    gap: 22px 22px;
  }

  .mse-arenas-name {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .mse-arenas-container {
    width: min(1120px, calc(100% - 28px));
  }

  .mse-arenas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mse-arenas-media {
    min-height: 200px;
  }

  .mse-arenas-soon {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .mse-arenas-filterlabel {
    font-size: 16px;
  }

  .mse-arenas-select {
    font-size: 15px;
    padding: 10px 40px 10px 12px;
  }

  .mse-arenas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mse-arenas-name {
    font-size: 22px;
  }

  .mse-arenas-media {
    min-height: 190px;
  }

  .mse-arenas-soon {
    min-height: 280px;
  }
}

/* Arena detail page header — desktop offset only */
.arena-page-header {
  margin-top: -50px;
}

@media (max-width: 991px) {
  .arena-page-header {
    margin-top: 0;
  }
}

/* Arenas Page New Layout */
.mse-arenas-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.mse-arenas-tabs {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mse-arenas-tab-label {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.mse-arenas-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.mse-arenas-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 50px 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
}

.mse-arenas-select:hover {
  border-color: #000;
}

.mse-arenas-select:focus {
  border-color: #000;
}

.mse-arenas-caret {
  position: absolute;
  right: 15px;
  pointer-events: none;
  color: #333;
  font-size: 14px;
}

.mse-arenas-search-container {
  flex: 0 1 420px;
}

.mse-arenas-search-box {
  position: relative;
  width: 100%;
}

.mse-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#arenaSearch {
  width: 100%;
  padding: 13px 20px 13px 52px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
  background: #fff;
  color: #333;
}

#arenaSearch::placeholder {
  color: #999;
}

#arenaSearch:focus {
  border-color: #000;
}

.mse-arenas-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.mse-arenas-grid.active {
  display: grid;
}

/* Card Overhaul */
.mse-arenas-section .mse-arenas-card {
  height: 540px;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  /* Zero border radius */
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e6e6;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

.mse-arenas-section .mse-arenas-card:hover {
  transform: scale(1.05);
  /* Updated scaling */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
}

.mse-arenas-section .mse-arenas-media {
  flex: 0 0 60%;
  height: 60%;
  padding: 0 !important;
  min-height: auto !important;
  display: block;
  overflow: hidden;
  position: relative;
}

.mse-arenas-section .mse-arenas-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  max-width: none !important;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mse-arenas-section .mse-arenas-card:hover .mse-arenas-media img {
  transform: scale(1.08);
}

.mse-arenas-section .mse-arenas-meta {
  flex: 0 0 40%;
  height: 40%;
  background: #fafafa !important;
  padding: 24px !important;
  display: flex;
  flex-direction: column;
}

.mse-arenas-section .mse-arenas-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.mse-arenas-section .mse-arenas-loc {
  margin-bottom: 20px;
  align-items: flex-start;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mse-arenas-section .mse-arenas-loc img {
  margin-top: 2px;
}

.mse-arenas-section .mse-arenas-btn {
  margin-top: auto;
  background-color: #000 !important;
  /* Default black background */
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  /* Zero radius */
  font-weight: 600 !important;
  height: 44px !important;
  transition:
    background-color 0.4s ease,
    transform 0.2s ease !important;
}

.mse-arenas-section .mse-arenas-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.highlight {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 0 2px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mse-arenas-top-layout {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .mse-arenas-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .mse-arenas-select {
    min-width: 160px;
    padding: 10px 40px 10px 15px;
    font-size: 15px;
  }

  .mse-arenas-search-container {
    width: 100%;
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ---------- ARENA DETAILS PAGE ---------- */
.mse-arena-d-section {
  background: #fff;
  padding: 0px 12px 70px;
}

.mse-arena-d-container {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.mse-arena-d-top {
  margin-bottom: 26px;
}

.mse-arena-d-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.mse-arena-d-main {
  background: #f3f3f3;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 270px;
  overflow: hidden;
}

.mse-arena-d-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-arena-d-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mse-arena-d-thumb {
  border: 1px solid #ececec;
  background: #f3f3f3;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  min-height: 126px;
  display: block;
  /* Added for <a> support */
}

.mse-arena-d-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-arena-d-thumb--overlay .mse-arena-d-seeall {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 8px 10px;
  letter-spacing: 0.3px;
}

.mse-arena-d-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: start;
}

.mse-arena-d-card {
  background: #fff;
  border: 1px solid #efefef;
  padding: 18px 18px;
  margin-bottom: 18px;
}

.mse-arena-d-cardtitle {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 14px;
  color: #111;
}

.mse-arena-d-p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

.mse-arena-d-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.mse-arena-d-ovitem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mse-arena-d-ovitem--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.mse-arena-d-ovicon {
  font-size: 18px;
  border: 1px solid #ccc;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.mse-arena-d-ovlabel {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.mse-arena-d-ovvalue {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.mse-arena-d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border: 1px solid #111;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.mse-arena-d-btn:hover {
  transform: translateY(-1px);
  background: #000;
}

.mse-arena-d-btn--sm {
  height: 40px;
  font-size: 12px;
  padding: 0 14px;
}

.mse-arena-d-btn--full {
  width: 100%;
}

.mse-arena-d-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mse-arena-d-chip {
  background: #efefef;
  border: 1px solid #e5e5e5;
  padding: 10px 14px;
  font-size: 12px;
  color: #111;
  font-weight: 400;
}

.mse-arena-d-list {
  margin: 0;
  padding-left: 16px;
  color: #222;
  font-size: 13px;
  line-height: 1.85;
}

.mse-arena-d-video {
  background: #e9e9e9;
  border: 1px solid #efefef;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-arena-d-play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #bdbdbd;
  color: #111;
  font-size: 18px;
  cursor: pointer;
}

.mse-arena-d-right {
  position: relative;
}

.mse-arena-d-stickywrap {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mse-arena-d-formcard,
.mse-arena-d-infocard {
  border: 1px solid #efefef;
  background: #fff;
  padding: 18px;
}

.mse-arena-d-formtitle {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111;
}

.mse-arena-d-formsub {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

.mse-arena-d-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mse-arena-d-input {
  height: 44px;
  border: 1px solid #efefef;
  background: #f7f7f7;
  padding: 0 12px;
  font-size: 13px;
  outline: none;
}

.mse-arena-d-input:focus {
  background: #fff;
  border-color: #cfcfcf;
}

.mse-arena-d-textarea {
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}

.mse-arena-d-support {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 12px;
}

.mse-arena-d-avatar {
  width: 44px;
  height: 44px;
  background: #282828;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-arena-d-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔑 fills the box perfectly */
  display: block;
  transform: scaleX(-1);
}

.mse-arena-d-supportname {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.mse-arena-d-supportphone {
  font-size: 12px;
  color: #444;
}

/* Modal box for slider */
.mse-arena-d-modalbox--slider {
  width: min(1100px, 94%);
  margin: 24px auto;
  padding: 14px;
}

/* Header actions */
.mse-arena-d-modalactions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mse-arena-d-modalcount {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #f4f4f4;
  border: 1px solid #e9e9e9;
  padding: 6px 10px;
}

/* Slider layout */
.mse-arena-d-slider {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 14px;
}

/* Image stage */
.mse-arena-d-sliderstage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 80% of screen image */
.mse-arena-d-sliderimg {
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  background: #f3f3f3;
  border: 1px solid #efefef;
}

/* Arrow buttons */
.mse-arena-d-sliderbtn {
  width: 54px;
  height: 54px;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.mse-arena-d-sliderbtn:hover {
  background: #f2f2f2;
}

.mse-arena-d-sliderbtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Thumbnail row (optional) */
.mse-arena-d-thumbrow {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 10px 8px 4px;
  border-top: 1px solid #efefef;
}

.mse-arena-d-thumbmini {
  border: 2px solid transparent;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.mse-arena-d-thumbmini img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  display: block;
  border: 1px solid #eee;
  background: #f3f3f3;
}

.mse-arena-d-thumbmini.is-active {
  border-color: #111;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .mse-arena-d-slider {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .mse-arena-d-sliderbtn {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .mse-arena-d-sliderimg {
    max-width: 92vw;
    max-height: 72vh;
  }
}

/* Modal */
.mse-arena-d-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

/* Ensure Fancybox is always on top of EVERYTHING including header and text is white */
.fancybox__container {
  z-index: 100000 !important;
  --fancybox-color: #fff !important;
  --fancybox-accent-color: #fff !important;
}

.fancybox__infobar,
.fancybox__caption,
.fancybox__toolbar,
.fancybox__nav,
.fancybox__button {
  color: #fff !important;
}

.fancybox__button svg {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.mse-arena-d-modal.is-open {
  display: block;
}

.mse-arena-d-modalbackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mse-arena-d-modalbox {
  position: relative;
  width: min(980px, 92%);
  margin: 40px auto;
  background: #fff;
  border: 1px solid #eee;
  padding: 14px;
}

.mse-arena-d-modaltop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 14px;
}

.mse-arena-d-modaltitle {
  font-weight: 800;
  font-size: 14px;
}

.mse-arena-d-modalclose {
  border: 1px solid #ddd;
  background: #fff;
  width: 40px;
  height: 36px;
  cursor: pointer;
}

.mse-arena-d-modalgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px;
}

.mse-arena-d-modalgrid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f2f2f2;
  border: 1px solid #eee;
}

/* Mobile bottom callback */
.mse-arena-d-mobilebar {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mse-arena-d-gallery {
    grid-template-columns: 1fr;
  }

  .mse-arena-d-grid {
    grid-template-columns: 1fr;
  }

  .mse-arena-d-stickywrap {
    position: static;
  }

  /* Hide desktop callback card; use bottom bar instead */
  #essbCallbackCard {
    display: none;
  }

  .mse-arena-d-mobilebar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #fff;
    border-top: 1px solid #eaeaea;
  }

  .mse-arena-d-mobilebarbtn {
    width: 100%;
    height: 54px;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
  }

  .mse-arena-d-mobilepanel {
    display: none;
    padding: 12px;
    background: #fff;
  }

  .mse-arena-d-mobilepanel.is-open {
    display: block;
  }

  .mse-arena-d-mobilecaret {
    display: inline-block;
    transform: translateY(-1px);
  }

  .mse-arena-d-modalgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .mse-arena-d-thumbs {
    gap: 12px;
  }

  .mse-arena-d-thumb {
    min-height: 110px;
  }
}

/* ---------- MARKETING PAGE ---------- */
.mse-marketing-featured-img img {
  width: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .mse-marketing-featured-img img {
    margin-top: 0px;
  }
}

.mse-mkt-section {
  padding: 70px 0 80px;
  background: #fff;
  color: #111;
}

.mse-mkt-container {
  width: min(1300px, calc(100% - 60px));
  margin: 0 auto;
}

.mse-mkt-title {
  text-align: center;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.mse-mkt-copy {
  max-width: 1300px;
  margin: 0 auto 46px;
  font-size: 18px;
  line-height: 1.75;
  color: #1f1f1f;
}

.mse-mkt-copy p {
  margin: 0 0 18px;
}

.mse-mkt-subtitle {
  text-align: center;
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 300;
  margin: 52px 0 26px;
  text-transform: uppercase;
}

.mse-mkt-agegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 14px;
}

.mse-mkt-agecard {
  border: 1px solid #e4e4e4;
  background: #fff;
  padding: 18px 18px 16px;
  min-height: 110px;
  width: auto;
}

.mse-mkt-agehead {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.mse-mkt-agedesc {
  margin: 0;
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.4;
}

.mse-mkt-arenaswrap {
  margin-top: 64px;
}

.mse-mkt-arenashead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.mse-mkt-arenastitle {
  margin: 0;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.mse-mkt-arenaslight {
  font-weight: 300;
  font-family: var(--font-heading);
  color: #111;
}

.mse-mkt-arenasbold {
  font-weight: 400 !important;
  color: #111;
  padding-inline: 10px;
  font-family: var(--font-heading);
}

.mse-mkt-arenaslight-desc {
  color: #a2a2a2;
  font-size: 18px;
}

.mse-mkt-nav {
  display: flex;
  gap: 14px;
}

.mse-mkt-navbtn {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.mse-mkt-navbtn:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.mse-mkt-viewport {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mse-mkt-viewport::-webkit-scrollbar {
  display: none;
}

.mse-mkt-track {
  display: flex;
  gap: 26px;
  will-change: scroll-position;
}

.mse-mkt-arena {
  flex: 0 0 auto;
  width: 360px;
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mse-mkt-arenaimg {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.mse-mkt-arenaimg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mse-mkt-arena:hover .mse-mkt-arenaimg img {
  transform: scale(1.08);
}

.mse-mkt-seeall {
  display: block;
  margin-top: 24px;
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  color: #00296f;
  text-decoration: underline;
  letter-spacing: 0.3px;
}

.mse-mkt-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e53935;
  color: #fff;
  font-size: 14px;
  padding: 8px 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.mse-mkt-arenameta {
  background: #f5f5f5;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mse-mkt-arenaname {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 300;
}

.mse-mkt-arenaloc {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  color: #222;
  margin-bottom: 16px;
}

.mse-mkt-arenabtn {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #111;
  text-decoration: none;
  text-transform: uppercase;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  background: transparent;
  transition:
    background 0.8s,
    color 0.4s;
}

.mse-mkt-arenabtn:hover {
  background: #111;
  color: #fff;
}

.mse-mkt-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.mse-mkt-ctaBtn {
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mse-mkt-ctaBtn:hover {
  filter: brightness(0.92);
}

@media (max-width: 1100px) {
  .mse-mkt-title {
    font-size: 44px;
  }

  .mse-mkt-agegrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mse-mkt-arenastitle {
    font-size: 32px;
  }

  .mse-mkt-arena {
    width: 330px;
  }
}

@media (max-width: 720px) {
  .mse-mkt-container {
    width: min(1180px, calc(100% - 26px));
  }

  .mse-mkt-title {
    font-size: 34px;
  }

  .mse-mkt-copy {
    font-size: 16px;
  }

  .mse-mkt-subtitle {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .mse-mkt-agegrid {
    grid-template-columns: 1fr;
  }

  .mse-mkt-arenashead {
    align-items: flex-start;
  }

  .mse-mkt-navbtn {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .mse-mkt-track {
    gap: 16px;
  }

  .mse-mkt-arena {
    width: 78vw;
    max-width: 360px;
  }

  .mse-mkt-arenaname {
    font-size: 26px;
  }
}

/* ---------- OUR PROGRAMS PAGE ---------- */
.mse-programs-section {
  padding: 50px 0 70px;
  background: #fff;
  color: #111;
  margin-top: 80px;
}

.mse-programs-container {
  width: min(1300px, calc(100% - 44px));
  margin: 0 auto;
}

.mse-programs-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.mse-programs-bcLink {
  color: #8a8a8a;
  text-decoration: none;
}

.mse-programs-bcLink:hover {
  text-decoration: underline;
}

.mse-programs-bcSep {
  color: #b0b0b0;
}

.mse-programs-bcCurrent {
  color: #111;
}

.mse-programs-title {
  text-align: center;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin: 0 0 26px;
}

.mse-programs-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 28px;
}

.mse-programs-pyramid {
  width: min(420px, 92%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.mse-programs-levels {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mse-programs-level {
  background: #f1f1f1;
  padding: 18px 20px;
}

.mse-programs-levelTitle {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 300;
}

.mse-programs-levelText {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  max-width: 980px;
}

.mse-programs-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
}

@media (max-width: 768px) {
  .mse-programs-container {
    width: min(1100px, calc(100% - 24px));
  }

  .mse-programs-title {
    font-size: 34px;
  }

  .mse-programs-pyramid {
    width: min(300px, 90%);
  }

  .mse-programs-level {
    padding: 16px 16px;
  }

  .mse-programs-levelTitle {
    font-size: 18px;
  }

  .mse-programs-levelText {
    font-size: 13.5px;
  }
}

/* ---------- OUR PACKAGES PAGE ---------- */
.mse-packages-section {
  padding: 52px 0 70px;
  background: #fff;
  color: #111;
  margin-top: 80px;
}

.mse-packages-container {
  width: min(1300px, calc(100% - 44px));
  margin: 0 auto;
}

.mse-packages-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.mse-packages-bcLink {
  color: #8a8a8a;
  text-decoration: none;
}

.mse-packages-bcLink:hover {
  text-decoration: underline;
}

.mse-packages-bcSep {
  color: #bdbdbd;
}

.mse-packages-bcCurrent {
  color: #111;
}

.mse-packages-title {
  text-align: center;
  font-size: 52px;
  font-weight: 300;
  margin: 0 0 34px;
  letter-spacing: 0.2px;
}

.mse-packages-grid-box {
  background-color: #fafafa;
  border: 1px solid #ededed;
  padding: 20px;
}

/* Grid like screenshot */
.mse-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}

/* Card style like screenshot */
.mse-packages-card {
  border: 1px solid #e9e9e9;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  /* more like screenshot */
}

/* top section has divider line */
.mse-packages-cardTop {
  position: relative;
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  /* pushes priceRow to bottom */
  border-bottom: 1px solid #ededed;
  min-height: 185px;
}

.mse-packages-star {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.mse-packages-star img {
  width: 100%;
  height: 100%;
  display: block;
}

.mse-packages-monthNum {
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
}

.mse-packages-monthLbl {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Simple bottom-to-top gradient text */
.mse-packages-monthNum,
.mse-packages-monthLbl {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* GOLD */
.mse-packages-monthNum--gold,
.mse-packages-monthLbl--gold {
  background-image: linear-gradient(to top, #b07a14 0%, #f0c35a 100%);
}

/* GREEN */
.mse-packages-monthNum--green,
.mse-packages-monthLbl--green {
  background-image: linear-gradient(to top, #0f7b62 0%, #33e0b5 100%);
}

/* PURPLE */
.mse-packages-monthNum--purple,
.mse-packages-monthLbl--purple {
  background-image: linear-gradient(to top, #4a3aa8 0%, #a59cff 100%);
}

/* GRAY */
.mse-packages-monthNum--gray,
.mse-packages-monthLbl--gray {
  background-image: linear-gradient(to top, #6b7280 0%, #d1d5db 100%);
}

/* Blue */
.mse-packages-monthNum--blue,
.mse-packages-monthLbl--blue {
  background-image: linear-gradient(to top, #1e40af 0%, #60a5fa 100%);
}

/* Fallback if gradient text not supported */
@supports not (-webkit-background-clip: text) {

  .mse-packages-monthNum--gold,
  .mse-packages-monthLbl--gold {
    color: #f0c35a;
  }

  .mse-packages-monthNum--green,
  .mse-packages-monthLbl--green {
    color: #33e0b5;
  }

  .mse-packages-monthNum--purple,
  .mse-packages-monthLbl--purple {
    color: #a59cff;
  }

  .mse-packages-monthNum--gray,
  .mse-packages-monthLbl--gray {
    color: #9aa0a6;
  }

  .mse-packages-monthNum--blue,
  .mse-packages-monthLbl--blue {
    color: #2f6bff;
  }
}

/* bottom strip like screenshot (white, clean, center) */
.mse-packages-priceRow {
  background: #fff;
  /* screenshot is not grey */
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-packages-price {
  font-size: 26px;
  font-weight: 600;
  color: #111;
}

.mse-packages-priceSub {
  font-size: 0.9em;
  opacity: 0.85;
  font-weight: 500;
}

/* Includes box */
.mse-packages-box {
  margin-top: 18px;
}

.mse-packages-boxTitle {
  margin: 0 0 14px;
  font-size: 36px;
  /* closer to screenshot */
  font-weight: 300;
  letter-spacing: 0.2px;
}

.mse-packages-list {
  margin: 0;
  padding-left: 18px;
  color: #222;
  line-height: 1.9;
  font-size: 18px;
  /* closer to screenshot */
}

/* =========================
   Responsive (like screenshot)
   ========================= */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .mse-packages-grid-box {
    padding: 10px;
  }

  .mse-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .mse-packages-monthNum {
    font-size: 76px;
  }

  .mse-packages-monthLbl {
    font-size: 20px;
  }
}

/* Mobile: STILL 2 columns (2x2 grid like screenshot) */
@media (max-width: 560px) {
  .mse-packages-grid-box {
    padding: 10px;
  }

  .mse-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mse-packages-card {
    min-height: 230px;
  }

  .mse-packages-cardTop {
    min-height: 160px;
    padding: 22px 14px 18px;
    gap: 8px;
  }

  .mse-packages-monthNum {
    font-size: 62px;
  }

  .mse-packages-monthLbl {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .mse-packages-price {
    font-size: 20px;
  }

  .mse-packages-boxTitle {
    font-size: 32px;
  }

  .mse-packages-list {
    font-size: 16px;
  }
}

/* Very small phones: 1 column (optional safety) */
@media (max-width: 375px) {
  .mse-packages-grid-box {
    padding: 10px;
  }

  .mse-packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Make the single PT card take full width inside its column */
.mse-packages-grid--single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Optional: keep both sides same "top alignment" feel */
@media (min-width: 992px) {
  .mse-packages-grid-box .mse-packages-card {
    height: 100%;
  }
}

/* Your blue theme (if not already) */
.mse-packages-monthNum--blue,
.mse-packages-monthLbl--blue {
  color: #2f6bff;
}

/* ---------- HOME PAGE ---------- */
.mse-home-hero {
  margin-top: 0;
}

/* Hero wrapper */
.mse-home-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 850px;
  overflow: hidden;
}

/* Background video/image */
.mse-home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* Slight dark overlay to improve contrast */
.mse-home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Bottom white fade */
.mse-home-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 90%);
  z-index: 2;
  pointer-events: none;
}

/* Center content – FIXED */
.mse-home-hero-content {
  position: absolute;
  inset: 0;
  /* fill entire hero */
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* TRUE vertical centering */
  text-align: center;
  padding: 0 18px;
}

/* Title */
.mse-home-hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  font-size: clamp(40px, 6vw, 88px);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

/* CTA button */
.mse-home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.mse-home-hero-btn:hover {
  transform: translateY(-1px);
}

.mse-home-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.mse-home-hero-btn:active {
  transform: translateY(0px);
}

/* =========================
   Responsive tweaks
   ========================= */

@media (max-width: 900px) {
  .mse-home-hero {
    margin-top: 0;
  }

  .mse-home-hero-topbar {
    height: 80px;
  }

  .mse-home-hero-wrap,
  .mse-home-hero-content {
    min-height: 820px;
    margin-top: -80px;
  }

  .mse-home-hero-fade {
    height: 140px;
  }
}

@media (max-width: 560px) {
  .mse-home-hero-topbar {
    height: 64px;
  }

  .mse-home-hero-wrap,
  .mse-home-hero-content {
    min-height: 90vh;
    margin-top: -70px;
  }

  .mse-home-hero-btn {
    height: 42px;
    padding: 0 20px;
    font-size: 12px;
  }
}

.mse-home-info {
  width: 100%;
  background: #fff;
  padding: 54px 0 70px;
}

.mse-home-info-container {
  width: min(1300px, calc(100%));
  margin: 0 auto;
}

.mse-home-info-block {
  width: 100%;
}

/* =========================
   TOP: PROGRAMS & TRAININGS
   ========================= */
.mse-home-info-title {
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 32px;
  color: #111;
}

.mse-home-info-programs-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
}

.mse-home-info-pyramid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mse-home-info-pyramid-img {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

.mse-home-info-agegrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mse-home-info-agecard:last-child {
  grid-column: 1 / -1;
}

.mse-home-info-agecard {
  border: 2px solid #e6e6e6;
  background: #fff;
  padding: 18px 18px 16px;
  min-height: 112px;
}

.mse-home-info-agehead {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: #111;
  margin-bottom: 10px;
}

.mse-home-info-agesub {
  font-size: 15px;
  color: #222;
  line-height: 1.5;
}

/* =========================
   BOTTOM: OUR PACKAGES
   ========================= */
.mse-home-info-packages {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mse-home-info-packtitle {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  color: #111;
}

.mse-home-info-packdesc {
  margin: 0 0 32px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: #222;
}

.mse-home-packflags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 36px;
}

.mse-home-packflags img {
  width: 100%;
  height: auto;
  display: block;
}

.mse-home-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #111;
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
}

.mse-home-info-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.mse-home-info-btn:active {
  transform: translateY(0px);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .mse-home-info-programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mse-home-info-agegrid {
    grid-template-columns: 1fr;
  }

  .mse-home-info-packdesc {
    max-width: 100%;
    font-size: 15px;
  }

  .mse-home-info-btn {
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .mse-home-info-container {
    width: min(1180px, calc(100% - 28px));
  }

  .mse-home-info-agehead {
    font-size: 24px;
  }

  .mse-home-packflags {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.mse-home-desc {
  width: 100%;
  background: #fff;
}

.mse-home-desc-container {
  width: min(1300px, calc(100%));
  margin: 0 auto;
  padding: 56px 0 52px;
}

.mse-home-desc-container--notop {
  padding-top: 0;
}

/* shared title */
.mse-home-desc-title {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 32px;
  color: #111;
}

/* =========================
   OUR SERVICES (3 cards)
   ========================= */
.mse-home-desc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mse-home-desc-scard {
  position: relative;
  border: 2px solid #e5e5e5;
  background: #fff;
  height: 170px;
  overflow: hidden;
  display: flex;
}

.mse-home-desc-scard-body {
  padding: 25px;
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.mse-home-desc-scard-h {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #111;
}

.mse-home-desc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: max-content;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  border: 1px solid transparent;
}

.mse-home-desc-btn:hover {
  background: #fff;
  color: #111;
  border-color: #111;
  transform: scale(1.05);
}

.mse-home-desc-scard:hover .mse-home-desc-scard-shape img {
  transform: scale(1.15);
}

.mse-home-desc-scard-shape {
  position: absolute;
  right: -44px;
  top: -24px;
  width: 185px;
  height: 165px;
  transform: rotate(10deg);
  pointer-events: none;
}

.mse-home-desc-scard-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   TESTIMONIALS CAROUSEL
   ========================= */
.mse-home-desc-testimonials {
  overflow: hidden;
}

.mse-home-desc-trow {
  display: flex;
  gap: 22px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.mse-home-desc-trow::-webkit-scrollbar {
  display: none;
}

/* CARD BASE */
.mse-home-desc-tcard {
  flex: 0 0 auto;
  width: 360px;
  height: 400px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
}

/* TEXT CARD */
.mse-home-desc-tcard--text {
  padding: 22px 22px 18px;
}

/* VIDEO CARD */
.mse-home-desc-tcard--video {
  background: #1a1a1a;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Student review cards fill grid tracks */
.mse-student-reviews-row .mse-home-desc-tcard {
  width: 100%;
  flex: none;
}

/* TEXT */
.mse-home-desc-ttext {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 14px;
}

/* META */
.mse-home-desc-tmeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

/* AVATAR */
.mse-home-desc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: #ddd;
}

.mse-home-desc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NAME */
.mse-home-desc-person-name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.mse-home-desc-person-sub {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

/* INLINE VIDEO PLAYER */
.mse-home-desc-tvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-home-desc-timg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Student Reviews section */
.mse-student-reviews {
  padding: 4rem 0 2rem;
}

/* ========================
   Blog Listing Page
======================== */
.mse-blog-section {
  padding: 3rem 0 5rem;
}

.mse-blog-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.mse-blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.mse-blog-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8d8d8;
}

.mse-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mse-blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.mse-blog-body {
  padding: 18px 20px 22px;
}

.mse-blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.mse-blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #888;
  line-height: 1;
}

.mse-blog-meta svg {
  flex-shrink: 0;
}

.mse-blog-title {
  font-size: 17px;
  font-weight: 500;
  color: #111;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mse-blog-card:hover .mse-blog-title {
  color: #2563eb;
}

@media (max-width: 575px) {
  .mse-blog-body {
    padding: 14px 16px 18px;
  }

  .mse-blog-title {
    font-size: 15px;
  }
}

.mse-student-reviews-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .mse-student-reviews-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .mse-student-reviews-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.mse-home-desc-toverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mse-home-desc-tcard--video:hover .mse-home-desc-toverlay {
  background: rgba(0, 0, 0, 0.28);
}

.mse-home-desc-tvtitle {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #fff;
  font-size: clamp(16px, 2vw, 25px);
  font-family: var(--font-heading);
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.mse-home-desc-tcard--video.is-playing .mse-home-desc-tvtitle {
  display: none;
}

.mse-home-desc-tplay {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.mse-home-desc-tplay:hover {
  background: rgba(255, 255, 255, 0.35);
}

.mse-home-desc-tplay img {
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .mse-home-desc-testimonials.mse-home-desc-container {
    padding-top: 100px;
  }

  .mse-home-desc-tcard {
    width: 260px;
    height: 350px;
  }

  .mse-home-desc-tcard--video {
    height: 350px;
  }

  .mse-home-desc-ttext {
    flex: 1;
    font-size: 12px;
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }

  .mse-home-desc-tmeta {
    margin-top: 0px;
  }
}

/* =========================
   BIG CTA STRIP
   ========================= */
.mse-home-desc-cta {
  width: 100%;
  padding: 220px 0;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}

.mse-home-desc-cta-bg {
  position: absolute;
  inset: -25%;
  background-image: url("../img/highlight-cta-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.mse-home-desc-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.mse-home-desc-cta-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.mse-home-desc-cta-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.mse-home-desc-cta-logo:hover {
  transform: scale(1.05);
}

.mse-home-desc-cta-title {
  margin: 0 0 10px;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  transition: text-shadow 0.4s ease;
  cursor: default;
}

.mse-home-desc-cta-title:hover {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.95),
    0 0 45px rgba(255, 255, 255, 0.55),
    0 0 80px rgba(255, 255, 255, 0.25);
}

.mse-home-desc-cta-sub {
  margin: 0 0 22px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  transition: text-shadow 0.4s ease;
  cursor: default;
}

.mse-home-desc-cta-sub:hover {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.95),
    0 0 45px rgba(255, 255, 255, 0.55),
    0 0 80px rgba(255, 255, 255, 0.25);
}

.mse-home-desc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #fff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.mse-home-desc-cta-btn:hover {
  background: #fff;
  color: #111;
  transform: scale(1.04);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .mse-home-desc-services-grid {
    grid-template-columns: 1fr;
  }

  .mse-home-desc-scard {
    min-height: 148px;
    height: auto;
  }

  .mse-home-desc-trow {
    grid-template-columns: 1fr;
  }

  .mse-home-desc-scrollbar {
    display: none;
  }

  .mse-home-desc-cta {
    padding: 160px 0;
  }

  .mse-home-desc-cta-title {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .mse-home-desc-container {
    width: min(1180px, calc(100% - 28px));
  }

  .mse-home-desc-scard-body {
    width: 72%;
    padding: 20px;
  }

  .mse-home-desc-scard-h {
    font-size: 20px;
  }

  .mse-home-desc-cta-logo {
    width: 120px;
  }

  .mse-home-desc-cta-title {
    font-size: 26px !important;
  }

  .mse-home-desc-cta-sub {
    font-size: 16px;
  }

  .mse-home-desc-cta-btn {
    height: 40px;
    padding: 0 20px;
    font-size: 12px;
  }
}

.mse-home-blogs {
  padding: 80px 0;
}

.mse-home-blogs-wrap {
  width: min(1300px, calc(100%));
  margin: 0 auto;
}

.mse-home-blogs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mse-home-blogs-top .mse-home-desc-title {
  text-align: left;
  margin: 0;
  font-size: 32px !important;
  flex: 1;
  min-width: 0;
}

.mse-home-blogs-title {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #111;
  text-transform: uppercase;
}

.mse-home-blogs-nav {
  display: inline-flex;
  gap: 14px;
}

.mse-home-blogs-navbtn {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.mse-home-blogs-navbtn:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.mse-home-blogs-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.mse-home-blogs-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mse-home-blogs-row::-webkit-scrollbar {
  display: none;
}

/* BLOG CARD */
.mse-home-blogs-card {
  flex: 0 0 auto;
  width: calc((100% - 44px) / 2.5);
  border: 1px solid #e4e4e4;
  background: #fff;
  display: grid;
  grid-template-rows: 260px 1fr;
}

.mse-home-blogs-img {
  overflow: hidden;
}

.mse-home-blogs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mse-home-blogs-card:hover .mse-home-blogs-img img {
  transform: scale(1.08);
}

.mse-home-blogs-body {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
}

.mse-home-blogs-meta {
  font-size: 12px;
  color: #222;
  margin-bottom: 6px;
}

.mse-home-blogs-h {
  font-size: 24px;
  font-weight: 300;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 8px;
  color: #111;
  text-decoration: none;
  display: block;
}

.mse-home-blogs-h:hover {
  color: #3b3b3b;
}

.mse-home-blogs-desc {
  font-size: 13px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.mse-home-blogs-btn {
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e4e4;
  background: transparent;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
  margin-top: auto;
}

.mse-home-blogs-btn:hover {
  background: #000;
  color: #fff;
}

/* VIDEO CARD (WIDE) */
.mse-home-blogs-video {
  flex: 0 0 auto;
  width: calc((100% - 44px) / 2.5);
  min-height: 300px;
  border: 1px solid #e4e4e4;
  background: #111;
  position: relative;
  overflow: hidden;
}

.mse-home-blogs-videoLink {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.mse-home-blogs-videoTitle {
  position: absolute;
  left: 22px;
  bottom: 52px;
  font-size: 26px;
  font-weight: 300;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  right: 22px;
}

.mse-home-blogs-play {
  position: absolute;
  right: 56px;
  bottom: 44px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.mse-home-blogs-play:hover {
  background: rgba(0, 0, 0, 0.7);
}

.mse-home-blogs-play img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* Inline video player */
.mse-home-blogs-videoplayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* YouTube thumbnail (lite embed) */
.mse-home-blogs-ytthumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* YouTube iframe (loaded on click) */
.mse-home-blogs-ytframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.mse-home-blogs-videooverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mse-home-blogs-video:hover .mse-home-blogs-videooverlay {
  background: rgba(0, 0, 0, 0.28);
}

.mse-home-blogs-video.is-playing .mse-home-blogs-videoTitle {
  display: none;
}

/* Drag cursor */
.mse-home-blogs-row {
  cursor: grab;
}

.mse-home-blogs-row.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.mse-home-desc-title--spaced {
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .mse-home-blogs-wrap {
    width: min(1180px, calc(100% - 28px));
  }

  .mse-home-blogs-card {
    grid-template-rows: 180px 1fr;
  }

  .mse-home-blogs-h {
    font-size: 20px;
  }

  .mse-home-blogs-video {
    min-height: 260px;
  }

  .mse-home-blogs-videoTitle {
    font-size: 22px;
    left: 16px;
    bottom: 18px;
    right: 16px;
  }

  .mse-home-blogs-play {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .mse-home-blogs-card {
    width: calc(100% - 44px);
    grid-template-rows: 200px 1fr;
  }

  .mse-home-blogs-video {
    width: calc(100% - 44px);
    min-height: 280px;
  }

  .mse-home-desc-title--spaced {
    margin-top: 0px;
  }

  .mse-home-blogs-nav {
    flex-shrink: 0;
  }

  /* mobile: center title, full-width top bar */
  .mse-home-blogs-top {
    justify-content: center;
  }

  .mse-home-blogs-top .mse-home-desc-title {
    text-align: center;
  }

  /* bottom nav row */
  .mse-home-blogs-nav--mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .mse-home-blogs-navbtn {
    width: 38px;
    height: 38px;
  }

  .mse-home-blogs-card {
    width: calc(100% - 44px);
    grid-template-rows: 180px 1fr;
  }

  .mse-home-blogs-h {
    font-size: 18px;
  }

  .mse-home-blogs-video {
    width: calc(100% - 44px);
    min-height: 240px;
  }

  .mse-home-blogs-videoTitle {
    font-size: 20px;
  }
}

.mse-faqs {
  background: #f5f5f5;
  padding: 80px 0 90px;
}

.mse-faqs-wrap {
  width: min(1300px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: start;
}

/* Left column */
.mse-faqs-left {
  position: sticky;
  top: 40px;
}

.mse-faqs-heading {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.15;
  color: #111;
}

.mse-faqs-sub {
  margin: 0 0 24px;
  font-size: 16px;
  color: #777;
}

.mse-faqs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  /* desktop: keep in left column */
  grid-column: 1;
}

.mse-faqs-btn:hover {
  background: #fff;
  border: 1px solid #111;
  transform: translateY(-2px);
  color: #111;
}

.mse-faqs-box {
  border: 1px solid #e2e2e2;
}

/* Each row */
.mse-faqs-item {
  border-top: 1px solid #e2e2e2;
  background: #f6f6f6;
}

.mse-faqs-item:first-child {
  border-top: 0;
}

/* When open -> white background to stand out from section */
.mse-faqs-item[open] {
  background: #fff;
}

.mse-faqs-item[open] .mse-faqs-q {
  color: #2563eb;
}

/* Remove default marker */
.mse-faqs-item summary {
  list-style: none;
}

.mse-faqs-item summary::-webkit-details-marker {
  display: none;
}

/* Question row */
.mse-faqs-q {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* Answer text */
.mse-faqs-a {
  padding: 0 24px 22px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.55;
  color: #838383;
  max-width: 1100px;
}

/* Chevron icon (CSS-drawn) */
.mse-faqs-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  position: relative;
}

.mse-faqs-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: rotate(45deg);
  /* down */
  transition: transform 0.16s ease;
}

/* open = up arrow */
.mse-faqs-item[open] .mse-faqs-icon::before {
  transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 900px) {
  .mse-faqs-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(1180px, calc(100% - 28px));
  }

  .mse-faqs-left {
    position: static;
    text-align: center;
  }

  .mse-faqs-heading {
    margin-bottom: 8px;
  }

  .mse-faqs-sub {
    margin-bottom: 0;
  }

  .mse-faqs-btn {
    grid-column: 1;
    margin: 0 auto;
    display: flex;
  }

  .mse-faqs-q {
    font-size: 16px;
    font-weight: 300;
    padding: 18px 16px;
    grid-template-columns: 1fr 34px;
  }

  .mse-faqs-a {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .mse-faqs-icon {
    width: 28px;
    height: 28px;
  }
}

/* =========================
   FAQ Page — Feature Cards
========================= */
.mse-faq-features {
  padding: 3rem 0 2rem;
}

.mse-faq-feature-card {
  background: #e8f0fe;
  border-radius: 16px;
  padding: 28px 22px 24px;
  height: 100%;
}

.mse-faq-feature-icon {
  width: 52px;
  height: 52px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.mse-faq-feature-title {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mse-faq-feature-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* FAQ Page — Standalone accordion (no left column) */
.mse-faq-section {
  padding: 1rem 0 4rem;
}

.mse-faq-standalone-box {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}

.mse-faq-standalone-box .mse-faqs-item {
  background: #fff;
}

.mse-faq-standalone-box .mse-faqs-item[open] {
  background: #fff;
}

/* Mobile: stack cards 2-per-row already via Bootstrap col-6 */
@media (max-width: 575px) {
  .mse-faq-feature-card {
    padding: 20px 16px 18px;
  }

  .mse-faq-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .mse-faq-feature-title {
    font-size: 14px;
  }

  .mse-faq-feature-desc {
    font-size: 13px;
  }
}

/* =========================
   Base (your existing)
========================= */
.mse-gallery-1__grid {
  display: grid;
  gap: 16px;
}

/* keep your current desktop grid rules exactly as you have them
   (columns + spans for small/wide/large etc.) */

/* Your existing box + img rules */
.mse-gallery-1__box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.mse-gallery-1__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Keep play button centered */
.mse-gallery-1__play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* =========================
   Mobile only (do NOT affect desktop)
   - Make items stack nicely
   - Let height be based on image ratio
========================= */
@media (max-width: 767px) {

  /* Switch to single column on mobile */
  .mse-gallery-1__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Remove desktop spans on mobile so nothing breaks */
  .mse-gallery-1__small,
  .mse-gallery-1__wide,
  .mse-gallery-1__large {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* IMPORTANT:
     On mobile, don't force boxes to match a grid row height.
     Use aspect-ratio so the height is consistent & responsive.
     You can tweak ratios if you want different feels.
  */
  .mse-gallery-1__box {
    height: auto;
    aspect-ratio: 4 / 3;
    /* default for all tiles */
  }

  /* Optional: make video tile a bit more "banner" style */
  .mse-gallery-1__video {
    aspect-ratio: 4 / 4;
  }

  /* Since box height is driven by aspect-ratio,
     image should fill it */
  .mse-gallery-1__img {
    height: 100%;
  }
}

/* =========================
   ESSB GALLERY 2 - Desktop layout
   (keeps your 2-column structure)
========================= */
.mse-gallery-2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mse-gallery-2__left,
.mse-gallery-2__right {
  display: grid;
  gap: 16px;
}

/* Right bottom split into 2 tiles */
.mse-gallery-2__right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Boxes */
.mse-gallery-2__box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Make desktop heights consistent (feel free to tweak) */
.mse-gallery-2__left-top {
  min-height: 220px;
}

.mse-gallery-2__left-bottom {
  min-height: 220px;
}

.mse-gallery-2__right-top {
  min-height: 280px;
}

.mse-gallery-2__right-bottom-left {
  min-height: 200px;
}

.mse-gallery-2__right-bottom-right {
  min-height: 200px;
}

/* Images fill tiles */
.mse-gallery-2__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Play button centered */
.mse-gallery-2__play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* =========================
   Mobile responsiveness
   - Do NOT change desktop grid
   - Stack into 1 column
   - Auto height using aspect-ratio
========================= */
@media (max-width: 767px) {
  .mse-gallery-2__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mse-gallery-2__left,
  .mse-gallery-2__right {
    gap: 12px;
  }

  .mse-gallery-2__right-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Let tiles size naturally (no forced min-heights) */
  .mse-gallery-2__left-top,
  .mse-gallery-2__left-bottom,
  .mse-gallery-2__right-top,
  .mse-gallery-2__right-bottom-left,
  .mse-gallery-2__right-bottom-right {
    min-height: auto;
    height: auto;
    aspect-ratio: 4 / 3;
    /* consistent tile height on mobile */
  }

  /* Video tile can be wider */
  .mse-gallery-2__video {
    aspect-ratio: 4 / 4;
  }

  .mse-gallery-2__img {
    height: 100%;
  }
}

/* Hand/grab cursor on desktop */
#essbAchViewport {
  cursor: grab;
}

#essbAchViewport:active {
  cursor: grabbing;
}

/* Make drag feel clean */
#essbAchViewport,
#essbAchViewport * {
  user-select: none;
  -webkit-user-select: none;
}

/* Ensure the cursor is NOT a pointer over images */
#essbAchTrack .mse-ach-slide img {
  cursor: inherit !important;
  -webkit-user-drag: none;
  pointer-events: none;
  /* lets dragging work even when starting on the image */
}

/* Thumbnail styling (keeps same box) */
.mse-yt-thumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mse-yt-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

/* ✅ smaller button + centered */
.mse-yt-thumb .mse-about-play {
  position: relative;
  z-index: 2;

  width: 56px;
  /* reduced */
  height: 56px;
  /* reduced */
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
}

/* optional: slightly smaller triangle too */
.mse-yt-thumb .mse-about-play-triangle {
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  /* reduced */
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* =========================
   VIDEO MODAL
   ========================= */
.mse-vmodal-dialog {
  height: min(90vh, 820px);
  width: auto;
  max-width: none;
}

.mse-vmodal-content {
  background: #000;
  border: none;
  border-radius: 0;
  height: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: visible;
}

.mse-vmodal-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.mse-vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.85;
  transition: opacity 0.15s;
  z-index: 10;
}

.mse-vmodal-close:hover {
  opacity: 1;
}

/* ================= TNC / PRIVACY POLICY ================= */
/* Allow native scroll on static content pages */
body:has(.mse-tnc-container) #smooth-wrapper {
  position: static !important;
  overflow: visible !important;
  height: auto !important;
}

.mse-tnc-container {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 48px 56px;
  margin: 40px auto 60px;
  max-width: 1300px;
  width: 100%;
  box-sizing: border-box;
}

.mse-tnc-container h1 {
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  padding-block: 0 24px;
}

.mse-tnc-container h4 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
}

.mse-tnc-container p,
.mse-tnc-container li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mse-tnc-container {
    padding: 28px 20px;
    margin: 24px auto 40px;
  }
}

/* ============================================================
   COLLEGES PAGE — 3D Flip Cards & Stats Banner
   ============================================================ */

.msc-colleges-section {
  padding: 60px 0 80px;
}

.msc-colleges-wrap {
  width: min(1300px, calc(100% - 72px));
  margin: 0 auto;
}

/* Card grid row */
.msc-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* Individual card wrapper */
.msc-col-item {
  width: calc(33.333% - 16px);
  cursor: default;
}

/* 3D perspective container */
.msc-col-container {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Front & Back shared */
.msc-col-front,
.msc-col-back {
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
  min-height: 280px;
  color: #fff;
}

/* Front face */
.msc-col-front {
  position: relative;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

/* Dark overlay on front */
.msc-col-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 16px;
  backface-visibility: hidden;
}

/* Back face */
.msc-col-back {
  background: linear-gradient(135deg, #2575ff 0%, #0a4fd4 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}

/* Inner content (lifted via translateZ) */
.msc-col-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 28px 24px;
  box-sizing: border-box;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  perspective: inherit;
  z-index: 2;
  text-align: center;
  outline: 1px solid transparent;
}

/* Hover: flip */
.msc-col-container:hover .msc-col-front {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.msc-col-container:hover .msc-col-back {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

/* Front content */
.msc-col-name {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--font-heading);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.msc-col-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.msc-col-tag {
  background: #2575ff;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 0.5px;
}

/* Back logo image */
.msc-col-backlogo {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Back content */
.msc-col-backname {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.msc-col-backtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.msc-col-backtag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  padding: 4px 12px;
}

.msc-col-enquire {
  display: inline-block;
  background: #fff;
  color: #2575ff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  padding: 9px 26px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.msc-col-enquire:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #0a4fd4;
}

/* ── Stats Banner ── */
.msc-colleges-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 0px 52px;
  margin: 8px 0 40px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.msc-stats-left {
  flex: 0 0 auto;
  max-width: 260px;
}

.msc-stats-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-family: var(--font-heading);
  font-weight: 500;
  color: #111;
  line-height: 1.35;
  margin: 0;
}

.msc-stats-title .msc-stats-highlight {
  display: inline-block;
  background: #2575ff;
  color: #fff;
  border-radius: 8px;
  padding: 1px 12px;
}

/* Center image area with decorative circle */
.msc-stats-img {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.msc-stats-img img {
  position: relative;
  z-index: 1;
  height: 300px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Right stats */
.msc-stats-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 0 0 auto;
}

.msc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.msc-stat-num {
  font-size: clamp(32px, 4vw, 52px);
  font-family: var(--font-heading);
  font-weight: 500;
  color: #111;
  line-height: 1;
}

.msc-stat-label {
  font-size: 15px;
  color: #777;
  font-weight: 3400;
  text-align: center;
}

.msc-stat-sep {
  width: 1px;
  height: 52px;
  background: #d1d5db;
}

/* Responsive — Colleges */
@media (max-width: 991px) {
  .msc-col-item {
    width: calc(50% - 12px);
  }

  .msc-colleges-wrap {
    width: calc(100% - 48px);
  }

  .msc-colleges-stats {
    padding: 28px 32px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .msc-stats-left {
    max-width: 100%;
  }

  .msc-stats-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .msc-colleges-section {
    padding: 40px 0 56px;
  }

  .msc-colleges-wrap {
    width: calc(100% - 32px);
  }

  .msc-col-front,
  .msc-col-back {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .msc-col-item {
    width: 100%;
  }

  .msc-colleges-wrap {
    width: calc(100% - 24px);
  }

  .msc-stats-right {
    gap: 20px;
  }

  .msc-colleges-stats {
    padding: 24px 20px;
    gap: 16px;
  }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

.msc-about-wrap {
  width: min(1300px, calc(100% - 72px));
  margin: 0 auto;
}

/* ── Shared pill + section heading ── */
.msc-about-pill {
  display: inline-block;
  background: rgba(37, 117, 255, 0.1);
  color: #2575FF;
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.msc-about-sec-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: #0d0d0d;
  margin: 0 0 10px;
}

.msc-about-sec-sub {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 auto 40px;
  max-width: 620px;
}

/* ── Intro (hero two-col) ── */
.msc-about-intro-section {
  padding: 72px 0 60px;
}

.msc-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.msc-about-heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.25;
  margin: 0 0 16px;
}

.msc-about-heading .msc-about-hl {
  display: inline-block;
  background: #2575FF;
  color: #fff;
  border-radius: 8px;
  padding: 0 10px;
}

.msc-about-para {
  font-size: 15px;
  color: #555;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 28px;
}

.msc-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.msc-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

.msc-about-list-dot {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #2575FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Video card ── */
.msc-about-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #e8eaed;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.msc-about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msc-about-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s;
  pointer-events: none;
}

.msc-about-video-wrap.is-playing .msc-about-video-thumb {
  opacity: 0;
}

.msc-about-playbtn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}

.msc-about-playbtn-inner {
  width: 68px;
  height: 68px;
  background: #ffffff30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s;
}

.msc-about-video-wrap:hover .msc-about-playbtn-inner {
  transform: scale(1.1);
}

.msc-about-video-wrap.is-playing .msc-about-playbtn {
  opacity: 0;
}

.msc-about-video-wrap.is-playing:hover .msc-about-playbtn {
  opacity: 1;
}

/* ── Feature Cards ── */
.msc-about-features-section {
  padding: 0 0 72px;
}

.msc-about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.msc-about-fcard {
  background: #f5f6fa;
  border-radius: 16px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.msc-about-fcard:hover {
  box-shadow: 0 8px 28px rgba(37, 117, 255, 0.1);
  transform: translateY(-3px);
}

.msc-about-fcard-icon {
  width: 52px;
  height: 52px;
  background: #2575FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.msc-about-fcard-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0 0 10px;
}

.msc-about-fcard-desc {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* ── Stats Banner ── */
.msc-about-stats-section {
  padding: 0 0 80px;
}

.msc-about-stats {
  background: #2575FF;
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 25px 70px 0 rgba(37, 117, 255, 0.40);
}

.msc-about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.msc-about-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.msc-about-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.msc-about-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.3);
}

/* ── Process ── */
.msc-about-process-section {
  padding: 0 0 80px;
  text-align: center;
}

.msc-about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 40px;
}

.msc-about-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.msc-about-step-icon {
  width: 80px;
  height: 80px;
  background: #eef2ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.msc-about-step:hover .msc-about-step-icon {
  background: #dce8ff;
  transform: translateY(-4px);
}

.msc-about-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.msc-about-step-desc {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Team ── */
.msc-about-team-section {
  padding: 0 0 80px;
  text-align: center;
}

.msc-about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.msc-about-tcard {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f6fa;
}

.msc-about-tcard-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.msc-about-tcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.msc-about-tcard:hover .msc-about-tcard-img img {
  transform: scale(1.07);
}

.msc-about-tcard-body {
  padding: 16px 20px 20px;
}

.msc-about-tcard-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 4px;
}

.msc-about-tcard-role {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  margin: 0;
}

/* ── About Responsive ── */
@media (max-width: 991px) {
  .msc-about-wrap {
    width: calc(100% - 48px);
  }

  .msc-about-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .msc-about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .msc-about-stats {
    flex-wrap: wrap;
    gap: 28px;
    padding: 32px 28px;
  }

  .msc-about-stat-sep {
    display: none;
  }

  .msc-about-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .msc-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .msc-about-wrap {
    width: calc(100% - 32px);
  }

  .msc-about-intro-section {
    padding: 48px 0 40px;
  }

  .msc-about-features-section,
  .msc-about-stats-section,
  .msc-about-process-section,
  .msc-about-team-section {
    padding-bottom: 52px;
  }

  .msc-about-features-grid {
    grid-template-columns: 1fr;
  }

  .msc-about-steps {
    grid-template-columns: 1fr;
  }

  /* Team — 2 cols, tighter image, smaller body text */
  .msc-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .msc-about-tcard-img {
    aspect-ratio: 1 / 1;
  }

  .msc-about-tcard-body {
    padding: 10px 12px 14px;
  }

  .msc-about-tcard-name {
    font-size: 13px;
  }

  .msc-about-tcard-role {
    font-size: 11px;
  }
}

/* ============================================================
   COURSE DETAIL PAGE
   ============================================================ */

.msc-course-section {
  padding: 44px 0 72px;
}

.msc-course-wrap {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

/* Breadcrumb */
.msc-course-crumb {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 400;
}

.msc-course-crumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.msc-course-crumb a:hover {
  color: #2575FF;
}

.msc-course-crumb-sep {
  color: #bbb;
  display: flex;
  align-items: center;
}

.msc-course-crumb-current {
  color: #2575FF;
  font-weight: 500;
}

/* Hero title & intro */
.msc-course-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 14px;
  line-height: 1.25;
}

.msc-course-intro-para {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.msc-course-intro-para strong {
  color: #111;
  font-weight: 600;
}

/* Auto-scrolling draggable image slider */
.msc-course-slider {
  overflow: hidden;
  margin: 28px 0 32px;
  cursor: grab;
}

.msc-course-slider.is-dragging {
  cursor: grabbing;
}

.msc-course-slider-track {
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
}

.msc-course-slider-item {
  flex: none;
  /* width set by JS based on container */
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e8eaed;
}

.msc-course-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Info cards */
.msc-course-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.msc-course-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #0d0d0d;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* Icon list grid (why choose, colleges, career) */
.msc-course-ilist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.msc-course-ilist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.45;
}

.msc-ci {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #2575FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Responsive table wrapper */
.msc-course-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.msc-course-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 380px;
}

.msc-course-table th {
  background: #f5f6fa;
  font-weight: 600;
  color: #111;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}

.msc-course-table td {
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  color: #444;
  font-weight: 400;
  font-size: 14px;
}

.msc-course-table tr:nth-child(even) td {
  background: #fafafa;
}

/* Admission process steps */
.msc-course-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.msc-course-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

.msc-course-stepnum {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #2575FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.msc-course-step-sep {
  color: #ccc;
  font-size: 18px;
  line-height: 1;
  padding: 0 2px;
}

/* Career scope sub-label */
.msc-course-sublabel {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin: 0 0 14px;
}

/* Explore other courses */
.msc-course-explore {
  margin-top: 24px;
  padding: 48px 32px;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.msc-course-explore-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: #0d0d0d;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.msc-course-explore-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.msc-course-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f6fa;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  border: 1.5px solid #e5e7eb;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.msc-course-explore-btn:hover {
  background: #2575FF;
  border-color: #2575FF;
  color: #fff;
}

.msc-course-explore-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 190px;
  pointer-events: none;
  display: block;
  transform: scaleX(-1);
}

/* Course responsive */
@media (max-width: 767px) {
  .msc-course-wrap {
    width: calc(100% - 32px);
  }

  .msc-course-section {
    padding: 32px 0 56px;
  }

  .msc-course-ilist {
    grid-template-columns: repeat(2, 1fr);
  }

  .msc-course-card {
    padding: 20px 18px;
  }

  .msc-course-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .msc-course-step-sep {
    display: none;
  }

  .msc-course-explore {
    padding: 24px 20px 100px;
  }

  .msc-course-explore-img {
    height: 120px;
  }
}

@media (max-width: 575px) {
  .msc-course-wrap {
    width: calc(100% - 24px);
  }

  .msc-course-ilist {
    grid-template-columns: 1fr;
  }

  .msc-course-explore-img {
    height: 100px;
  }

  .msc-course-title {
    font-size: 26px;
  }

  .msc-course-intro-para {
    font-size: 13px;
  }
}

/* ============================================================
   MEDICAL COURSES PAGE  (msc-cors-*)
   ============================================================ */

/* ── Shared layout ── */
.msc-cors-wrap {
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;
}

.msc-cors-pill {
  display: inline-block;
  background: #e8efff;
  color: #2575FF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.msc-cors-h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.2;
  margin: 0 0 12px;
}

.msc-cors-subp {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.msc-cors-intro {
  text-align: center;
  margin-bottom: 48px;
}

.msc-cors-intro .msc-cors-subp {
  max-width: 580px;
  margin: 0 auto;
}

/* ── SECTION 1: Course cards ── */
.msc-cors-section {
  padding: 72px 0 64px;
  background: #fff;
}

.msc-cors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.msc-cors-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}

.msc-cors-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.msc-cors-card-imgwrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.msc-cors-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.msc-cors-card:hover .msc-cors-card-img {
  transform: scale(1.04);
}

.msc-cors-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2575FF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
}

.msc-cors-card-body {
  padding: 22px 24px 28px;
}

.msc-cors-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.msc-cors-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  background: #f5f6fa;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1;
}

.msc-cors-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 10px;
  line-height: 1.3;
}

.msc-cors-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
  margin: 0 0 18px;
}

.msc-cors-card-facts {
  list-style: none;
  padding: 16px 0 0;
  margin: 0 0 22px;
  border-top: 1px solid #f0f1f3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.msc-cors-card-facts li {
  font-size: 13px;
  color: #444;
  font-weight: 400;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.msc-cors-card-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: #2575FF;
  border-radius: 50%;
}

.msc-cors-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2575FF;
  text-decoration: none;
  border: 1.5px solid #2575FF;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.msc-cors-card-btn:hover {
  background: #2575FF;
  color: #fff;
}

/* ── SECTION 2: Stats banner ── */
.msc-cors-stats {
  background: #2575FF;
  padding: 56px 0;
}

.msc-cors-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.msc-cors-stat {
  text-align: center;
  padding: 12px 52px;
  flex: 1;
  min-width: 160px;
}

.msc-cors-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.msc-cors-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.msc-cors-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── SECTION 3: Eligibility ── */
.msc-cors-elig {
  padding: 80px 0;
  background: #f9fafb;
}

.msc-cors-elig-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.msc-cors-elig-left .msc-cors-subp {
  margin-bottom: 28px;
}

.msc-cors-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2575FF;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.msc-cors-link-btn:hover {
  background: #1a62e0;
  color: #fff;
}

.msc-cors-elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.msc-cors-elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e9eaec;
}

.msc-cors-elig-list li:first-child {
  padding-top: 0;
}

.msc-cors-elig-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.msc-cors-elig-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #2575FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.msc-cors-elig-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msc-cors-elig-list li strong {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  display: block;
}

.msc-cors-elig-list li span {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  line-height: 1.5;
}

/* ── SECTION 4: Process ── */
.msc-cors-process {
  padding: 80px 0;
  background: #fff;
}

.msc-cors-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.msc-cors-step {
  padding: 32px 24px 28px;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.msc-cors-step:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  border-color: #c8d8ff;
}

.msc-cors-step-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: #e8efff;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.msc-cors-step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 10px;
}

.msc-cors-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── SECTION 5: Colleges ── */
.msc-cors-colleges {
  padding: 80px 0;
  background: #f9fafb;
}

.msc-cors-coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.msc-cors-coll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.msc-cors-coll-item:hover {
  border-color: #2575FF;
  box-shadow: 0 4px 18px rgba(37, 117, 255, 0.1);
}

.msc-cors-coll-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.8;
}

.msc-cors-coll-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* ── SECTION 6: FAQ ── */
.msc-cors-faq {
  padding: 80px 0 88px;
  background: #fff;
}

.msc-cors-acc {
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.msc-cors-acc-item {
  border-bottom: 1px solid #e5e7eb;
}

.msc-cors-acc-item:last-child {
  border-bottom: none;
}

.msc-cors-acc-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0d0d0d;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.msc-cors-acc-q:hover {
  background: #f9fafb;
}

.msc-cors-acc-q.is-open {
  color: #2575FF;
  background: #f0f5ff;
}

.msc-cors-acc-icon {
  flex-shrink: 0;
  color: #aaa;
  transition: transform 0.25s;
}

.msc-cors-acc-q.is-open .msc-cors-acc-icon {
  transform: rotate(180deg);
  color: #2575FF;
}

.msc-cors-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 28px;
}

.msc-cors-acc-a.is-open {
  max-height: 300px;
  padding: 0 28px 22px;
}

.msc-cors-acc-a p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ── MEDICAL PAGE RESPONSIVE ── */
@media (max-width: 1100px) {
  .msc-cors-wrap {
    width: calc(100% - 60px);
  }
}

@media (max-width: 991px) {
  .msc-cors-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .msc-cors-coll-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .msc-cors-elig-inner {
    gap: 44px;
  }

  .msc-cors-stat {
    padding: 12px 32px;
  }
}

@media (max-width: 767px) {
  .msc-cors-wrap {
    width: calc(100% - 40px);
  }

  .msc-cors-section {
    padding: 52px 0 44px;
  }

  .msc-cors-elig {
    padding: 52px 0;
  }

  .msc-cors-process {
    padding: 52px 0;
  }

  .msc-cors-colleges {
    padding: 52px 0;
  }

  .msc-cors-faq {
    padding: 52px 0 60px;
  }

  .msc-cors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .msc-cors-elig-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .msc-cors-coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .msc-cors-stat-sep {
    display: none;
  }

  .msc-cors-stat {
    padding: 14px 20px;
  }

  .msc-cors-stats {
    padding: 40px 0;
  }

  .msc-cors-acc-q {
    padding: 18px 20px;
    font-size: 14px;
  }

  .msc-cors-acc-a {
    padding: 0 20px;
  }

  .msc-cors-acc-a.is-open {
    padding: 0 20px 18px;
  }
}

@media (max-width: 575px) {
  .msc-cors-wrap {
    width: calc(100% - 28px);
  }

  .msc-cors-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .msc-cors-step {
    padding: 24px 20px;
  }

  .msc-cors-step-num {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .msc-cors-card-body {
    padding: 18px 18px 22px;
  }

  .msc-cors-intro {
    margin-bottom: 32px;
  }
}

/* ================= SMOOTH-WRAPPER PAGE RESET ================= */
/* Disables ScrollSmoother fixed positioning on all content pages */
#smooth-wrapper {
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  width: 100% !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

#smooth-content {
  overflow: visible !important;
}

/* ================= COURSES LISTING PAGE ================= */
.mse-cour-section {
  padding: 48px 0 80px;
}

.mse-cour-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mse-cour-item {
  padding-top: 0;
}

.mse-cour-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid #4a90d9;
  border-radius: 20px;
  background: #fff;
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
}

.mse-cour-item--flip .mse-cour-card {
  padding: 22px 22px 0;
}

.mse-cour-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 13px;
}

.mse-cour-title a {
  color: inherit;
  text-decoration: none;
}

.mse-cour-title a:hover {
  color: #2563eb;
}

.mse-cour-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mse-cour-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  background: #fff;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}

.mse-cour-pill:hover {
  background: #eff6ff;
  border-color: #2563eb;
  color: #2563eb;
}

.mse-cour-pill svg {
  flex-shrink: 0;
}

/* person wrap — mobile: below pills, full image in normal flow */
.mse-cour-person-wrap {
  position: static;
  width: 100%;
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}

.mse-cour-item--flip .mse-cour-person-wrap {
  justify-content: flex-end;
}

.mse-cour-person-img {
  display: block;
  height: 170px;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom center;
}

/* "Millions Of Opportunities" card */
.mse-cour-item--opp {
  padding-top: 0;
}

.mse-cour-card--cta {
  overflow: hidden;
  padding: 44px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: auto;
}

.mse-cour-opp-text {
  font-size: clamp(22px, 4.5vw, 42px);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mse-cour-opp-badge {
  display: inline-flex;
  align-items: center;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
  font-weight: 600;
  font-size: inherit;
}

/* Desktop ≥992px — person overflows above card, flip rows right-aligned */
@media (min-width: 992px) {
  .mse-cour-section {
    padding: 56px 0 80px;
  }

  .mse-cour-list {
    gap: 32px;
  }

  .mse-cour-item {
    padding-top: 78px;
  }

  .mse-cour-card {
    overflow: visible;
    padding: 30px 240px 30px 44px;
    min-height: 120px;
  }

  .mse-cour-item--flip .mse-cour-card {
    padding: 30px 44px 30px 240px;
  }

  .mse-cour-item--flip .mse-cour-title {
    text-align: right;
  }

  .mse-cour-item--flip .mse-cour-pills {
    justify-content: flex-end;
  }

  .mse-cour-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .mse-cour-pill {
    font-size: 13.5px;
    padding: 9px 16px;
    gap: 6px;
  }

  .mse-cour-person-wrap {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
    width: 210px;
    height: calc(100% + 78px);
    margin-top: 0;
    overflow: visible;
    justify-content: flex-end;
  }

  .mse-cour-person-img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom;
  }

  .mse-cour-item--flip .mse-cour-person-wrap {
    right: auto;
    left: 0;
    justify-content: flex-start;
  }

  .mse-cour-item--opp {
    padding-top: 0;
  }

  .mse-cour-card--cta {
    padding: 56px 44px;
  }

  .mse-cour-list>.mse-cour-item:nth-child(5) .mse-cour-person-img,
  .mse-cour-list>.mse-cour-item:nth-child(6) .mse-cour-person-img {
    transform: scaleX(-1);
  }
}

@media (max-width: 767px) {
  .mse-cour-section .container-xl {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 991px) {

  .mse-cour-list>.mse-cour-item:nth-child(2) .mse-cour-person-img,
  .mse-cour-list>.mse-cour-item:nth-child(5) .mse-cour-person-img {
    transform: scaleX(-1);
  }
}

@media (max-width: 575px) {
  .mse-cour-section {
    padding: 28px 0 44px;
  }

  .mse-cour-card, .mse-cour-item--flip .mse-cour-card {
    padding: 16px 16px 0;
    border-radius: 14px;
  }

  .mse-cour-person-img {
    height: 140px;
  }

  .mse-cour-title {
    font-size: 16px;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  .mse-cour-pill {
    font-size: 12px;
    padding: 6px 11px;
    gap: 4px;
  }

  .mse-cour-list {
    gap: 12px;
  }

  .mse-cour-card--cta {
    padding: 36px 20px;
  }
}

/* ================= HOME PAGE ================= */

/* --- Shared utilities --- */
@property --mse-kicker-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.mse-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 20px;
  padding: 10px 22px 10px 14px;
  border: 1.5px solid #e2e6ea;
  border-radius: 999px;
  background: #fff;
  cursor: default;
  --mse-kicker-angle: 0deg;
}

.mse-home-kicker:hover {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--mse-kicker-angle), #2563eb, #93c5fd, #3b82f6, #2563eb) border-box;
  animation: mse-kicker-border-rot 2s linear infinite;
}

@keyframes mse-kicker-border-rot {
  to {
    --mse-kicker-angle: 360deg;
  }
}

.mse-home-kicker__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: mse-kicker-star-spin 3s linear infinite paused;
}

.mse-home-kicker:hover .mse-home-kicker__icon {
  animation-play-state: running;
}

@keyframes mse-kicker-star-spin {
  to {
    transform: rotate(360deg);
  }
}

.mse-home-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  margin-bottom: 10px;
}

.mse-home-badge--blue {
  background: #2563eb;
  color: #fff;
  border-color: transparent;
}

.mse-home-badge-inline {
  display: inline-block;
  padding: 2px 14px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-size: inherit;
  font-weight: 500;
}

.mse-home-sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.mse-home-sec-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 500;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}

.mse-home-sec-sub {
  font-size: 15px;
  color: #64748b;
  margin-top: 8px;
  margin-bottom: 0;
}

/* --- HERO --- */
.mse-home-hero {
  min-height: calc(78vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  overflow: hidden;
  background: #fff;
}

.mse-home-hero .container-xl {
  width: 100%;
}

.mse-home-hero__content {
  padding: 20px 0 48px;
}

.mse-home-hero__title {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.0;
  color: #0f172a;
  margin: 0 0 18px;
}

.mse-home-hero__sub {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.mse-home-hero__btn {
  display: inline-block;
  padding: 13px 34px;
  background: #2563eb;
  border: none;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s;
}

.mse-home-hero__btn:hover {
  background: #1d4ed8;
  color: #fff;
}

.mse-home-hero__img {
  display: block;
  width: 100%;
  max-width: 660px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

/* --- LOGO TICKER --- */
.mse-home-ticker {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.mse-home-ticker__wrap {
  overflow: hidden;
}

.mse-home-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: mse-ticker-scroll 38s linear infinite;
  will-change: transform;
}

.mse-home-ticker__logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.mse-home-ticker__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}

@keyframes mse-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mse-home-ticker__track {
    animation: none;
  }
}

/* --- STATS BAR --- */
.mse-home-stats {
  background: #2563eb;
  padding: 32px 0;
}

.mse-home-stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.mse-home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.mse-home-stat__num {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.mse-home-stat__lbl {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 5px;
}

.mse-home-stat__sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .mse-home-stat__sep {
    display: none;
  }

  .mse-home-stats__inner {
    gap: 24px 32px;
  }
}

/* About-style stats reused on home page */
.mse-home-stats-bar {
  padding: 48px 0 24px;
}

/* --- COURSE CATEGORIES --- */
.mse-home-cats {
  padding: 64px 0;
}

.mse-home-cats__list {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.mse-home-cats__list::-webkit-scrollbar {
  display: none;
}

.mse-home-cat-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: #0f172a;
  min-width: 190px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.mse-home-cat-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
  color: #0f172a;
}

.mse-home-cat-card__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  background: #f1f5f9;
}

.mse-home-cat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mse-home-cat-card__name {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

.mse-home-cat-card__count {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.mse-home-cat-card__arr {
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.2s;
}

.mse-home-cat-card:hover .mse-home-cat-card__arr {
  color: #2563eb;
}

@media (min-width: 992px) {
  .mse-home-cats__list {
    overflow-x: visible;
    justify-content: space-between;
  }

  .mse-home-cat-card {
    flex: 1;
    min-width: 0;
  }
}

/* --- COUNSELORS --- */
.mse-home-counsl {
  padding: 64px 0;
  background: #f8faff;
}

.mse-home-counsl__circle {
  width: 340px;
  height: 420px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
  box-shadow: 8px 8px 1px rgba(0, 0, 0, 0.30);
}

.mse-home-counsl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mse-home-counsl__title {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 500;
  color: #0f172a;
  line-height: 1.3;
  margin: 10px 0 16px;
}

.mse-home-counsl__sub {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 22px;
}

.mse-home-counsl__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}

.mse-home-counsl__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #0f172a;
  font-weight: 500;
}

.mse-home-counsl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  background: #2575ff;
  color: #fff;
  border: 2px solid #0043b7;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.mse-home-counsl__btn:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  color: #fff;
}

/* --- FREE CONSULTING CTA --- */
.mse-home-cta1 {
  position: relative;
  background: #2563eb;
  overflow: hidden;
  box-shadow:
    inset 0 30px 70px rgba(0, 0, 0, 0.18),
    inset 0 -30px 70px rgba(0, 0, 0, 0.18),
    inset 30px 0 70px rgba(0, 0, 0, 0.1),
    inset -30px 0 70px rgba(0, 0, 0, 0.1);
}

.mse-home-cta1__parallax {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 65% 55% at 12% 45%, rgba(255, 255, 255, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 88% 35%, rgba(255, 255, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 55% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.05s linear;
}

.mse-home-cta1__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  text-align: center;
}

.mse-home-cta1__title {
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.mse-home-cta1__sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.mse-home-cta1__btn {
  display: inline-block;
  background: #fff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.2s;
}

.mse-home-cta1__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  color: #2563eb;
}

.mse-home-cta1__btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

@media (max-width: 575px) {
  .mse-home-cta1__inner {
    padding: 72px 0;
  }
}

/* --- WHY CHOOSE US --- */
.mse-home-why {
  padding: 64px 0;
}

/* Accordion — card style */
.mse-home-acc {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mse-home-acc__item {
  border: 1.5px solid #e5e7eb !important;
  border-radius: 12px !important;
  background: #fff !important;
  overflow: hidden;
  transition: border-color 0.2s;
}

.mse-home-acc__item:has(.accordion-collapse.show) {
  border-color: #2563eb !important;
}

.mse-home-acc__btn {
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  background: #fff !important;
  padding: 18px 20px;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.mse-home-acc__btn:not(.collapsed) {
  color: #2563eb;
}

.mse-home-acc__body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
}

/* Two staggered images — mobile first */
.mse-home-why__imgs {
  position: relative;
}

.mse-home-why__img-left {
  display: block;
  width: 60%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
}

.mse-home-why__img-right {
  display: block;
  width: 60%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-left: auto;
  margin-top: 10px;
}

.mse-home-why__stat {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: #2563eb;
  color: #fff;
  border-radius: 14px;
  padding: 18px 28px;
  text-align: center;
}

.mse-home-why__stat-num {
  color: #fff;
  display: block;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.mse-home-why__stat-lbl {
  color: #fff;
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 5px;
}

/* Desktop: absolute stagger */
@media (min-width: 992px) {
  .mse-home-why__imgs {
    height: 430px;
  }

  .mse-home-why__img-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 310px;
    border-radius: 18px;
  }

  .mse-home-why__img-right {
    position: absolute;
    top: 80px;
    right: 0;
    width: 51%;
    height: 350px;
    border-radius: 18px;
    margin: 0;
  }

  .mse-home-why__stat {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    display: block;
    width: 46%;
  }
}

/* --- TESTIMONIALS --- */
.mse-home-testi {
  padding: 64px 0;
  background: #f8faff;
}

.mse-home-testi__outer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.mse-home-testi__slider {
  flex: 1;
  overflow: hidden;
}

.mse-home-testi__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.mse-home-testi__card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  border: 1.5px solid #e5e7eb;
  transition: border-color 0.2s;
}

.mse-home-testi__card:hover {
  border-color: #2563eb;
}

.mse-home-testi__stars {
  color: #f59e0b;
  font-size: 17px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.mse-home-testi__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mse-home-testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
  flex-shrink: 0;
}

.mse-home-testi__name {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

.mse-home-testi__quote {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.mse-home-testi__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.mse-home-testi__nav:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.mse-home-testi__slider.is-dragging .mse-home-testi__track {
  cursor: grabbing;
}


@media (max-width: 991px) {
  .mse-home-testi__card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .mse-home-testi__card {
    flex: 0 0 84%;
  }
}

/* --- NEWS & BLOGS --- */
.mse-home-news {
  padding: 64px 0;
}

/* ---- LEFT: Big card ---- */
.mse-home-nf__big {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

/* Image wrapper — relative so overlay can sit on top */
.mse-home-nf__big-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.mse-home-nf__big-thumb img {
  width: 100%;
  height: 472px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.mse-home-nf__big-thumb:hover img {
  transform: scale(1.03);
}

/* Full-cover gradient: transparent → near-black at bottom */
.mse-home-nf__big-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 20, 57, 0) 0%, #010005 100%);
  pointer-events: none;
  z-index: 1;
}

/* Content overlaid at bottom of image */
.mse-home-nf__big-over {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 35px;
  z-index: 2;
}

/* ---- RIGHT: Small cards ---- */
.mse-home-nf__small {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.mse-home-nf__card {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  text-decoration: none;
  color: #0f172a;
  flex: 1;
  transition: box-shadow 0.2s;
}

.mse-home-nf__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mse-home-nf__card-thumb {
  width: 200px;
  flex: 0 0 auto;
}

.mse-home-nf__card-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.mse-home-nf__card-body {
  flex: 1;
}

/* ---- Shared: Tag ---- */
.mse-home-nf__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  /* default: white outline (on dark overlay) */
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  margin-bottom: 12px;
}

.mse-home-nf__tag--dark {
  border-color: #e5e7eb;
  color: #374151;
  background: #fff;
}

/* ---- Shared: Meta row ---- */
.mse-home-nf__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;

}

.mse-home-nf__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.mse-home-nf__meta a {
  color: inherit;
  text-decoration: none;
  margin-left: 2px;
}

.mse-home-nf__meta a:hover {
  text-decoration: underline;
}

.mse-home-nf__meta--dark {

  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #101010;
  margin-bottom: 10px;
}

/* ---- Titles ---- */
.mse-home-nf__big-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.mse-home-nf__big-title a {
  color: inherit;
  text-decoration: none;
}

.mse-home-nf__card-title {
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: #0f172a;
}

.mse-home-nf__card-title a {
  color: inherit;
  text-decoration: none;
}

.mse-home-nf__card-title a:hover {
  color: #2563eb;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .mse-home-nf__card-thumb {
    width: 160px;
  }

  .mse-home-nf__card-thumb img {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .mse-home-hero {
    min-height: auto;
    padding: 24px 0 0;
  }

  .mse-home-hero__content {
    padding: 12px 0 24px;
  }

  .mse-home-cats,
  .mse-home-counsl,
  .mse-home-why,
  .mse-home-testi,
  .mse-home-news {
    padding: 44px 0;
  }

  .mse-home-nf__big {
    padding: 16px;
  }

  .mse-home-nf__big-thumb img {
    height: 300px;
  }

  .mse-home-nf__big-over {
    padding: 20px;
  }

  .mse-home-nf__card {
    flex-direction: column;
    gap: 14px;
  }

  .mse-home-nf__card-thumb {
    width: 100%;
  }

  .mse-home-nf__card-thumb img {
    height: 200px;
    width: 100%;
  }
}


/*---- Services------*/

.msc-services-hero-section {
  padding: 80px 0 40px;
}

.msc-services-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.msc-services-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 117, 255, 0.08);
  color: #2575FF;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 18px;
}

.msc-services-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 18px;
  color: #111827;
}

.msc-services-hl {
  color: #2575FF;
  font-weight: 500;
}

.msc-services-para {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6475;
  margin-bottom: 26px;
}

.msc-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.msc-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
  line-height: 1.7;
}

.msc-services-list-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #2575FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.msc-services-hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef4ff;
}

.msc-services-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msc-services-section {
  padding: 40px 0 30px;
}

.msc-services-sec-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  font-weight: 500;
  color: #111827;
  margin-bottom: 14px;
  text-align: center;
}

.msc-services-sec-sub {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
  color: #5b6475;
  line-height: 1.8;
  font-size: 16px;
}

.msc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.msc-services-card {
  background: #ffffff;
  border: 1px solid #e8edf7;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  height: 100%;
}

.msc-services-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2575FF, #5ea2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.msc-services-card-title {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 12px;
}

.msc-services-card-desc {
  color: #5b6475;
  line-height: 1.8;
  margin-bottom: 14px;
}

.msc-services-card-list {
  padding-left: 18px;
  margin: 0;
  color: #374151;
  line-height: 1.8;
}

.msc-services-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.msc-services-step {
  background: #fff;
  border: 1px solid #e8edf7;
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.msc-services-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2575FF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 16px;
}

.msc-services-step-title {
  font-size: 19px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 10px;
}

.msc-services-step-desc {
  color: #5b6475;
  line-height: 1.7;
  margin: 0;
}

.msc-services-why-section {
  padding: 30px 0 80px;
}

.msc-services-why-box {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #e8edf7;
  border-radius: 28px;
  padding: 36px;
}

.msc-services-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.msc-services-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
  line-height: 1.75;
  font-size: 16px;
}

.msc-services-why-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #2575FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 991.98px) {

  .msc-services-hero-grid,
  .msc-services-grid,
  .msc-services-process,
  .msc-services-why-list {
    grid-template-columns: 1fr;
  }

  .msc-services-hero-card {
    min-height: 360px;
  }

  .msc-services-hero-section {
    padding: 60px 0 30px;
  }

  .msc-services-why-box {
    padding: 26px;
  }
}

/* =============================================================
   Popup form — consistent 1px borders
   ============================================================= */

/* inputs: keep border at 1px, thin focus ring instead of Bootstrap's thick one */
#mse-popup .form-control {
  border: 1px solid #dee2e6;
}

#mse-popup .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
}

/* nudge floating label down 2px to vertically centre within the input */
#mse-popup .form-floating>label {
  padding-top: calc(.05rem + 1px);
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  color: #6c757d;
}

/* custom select button: match input appearance */
#mse-popup .mse-custom-select-btn.mse-input {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: calc(0.9rem + 2px) 1rem;
  font-size: 1rem;
  color: #212529;
  margin-top: 0;
  align-items: center;
}

#mse-popup .mse-custom-select.open .mse-custom-select-btn.mse-input {
  border-color: #86b7fe;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
  outline: none;
}

#mse-popup .mse-custom-select-btn.mse-input .mse-custom-select-value {
  font-family: "Satoshi", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6c757d;
}

#mse-popup .mse-custom-select-btn.mse-input.has-value .mse-custom-select-value {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

/* =============================================================
   Desktop min-width — prevents layout reflow at high browser zoom
   (120% / 150% system or browser zoom on Windows/smaller laptops).
   Touch devices (phones, tablets) are excluded so responsive
   Bootstrap layout still works normally on actual mobile screens.
   ============================================================= */
body {
  min-width: 1300px;
}

@media (hover: none) and (pointer: coarse) {
  body {
    min-width: 0;
  }
}
