:root {
  --brand-ink: #0d2a4a;
  --brand-ink-soft: #415f7d;
  --brand-blue: #0d47a1;
  --brand-cyan: #00acc1;
  --brand-navy: #082346;
  --brand-sky: #e3f2fd;
  --brand-gradient: linear-gradient(135deg, #0d2f66 0%, #0d47a1 50%, #1976d2 100%);
  --surface: #f4f8fc;
  --surface-card: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 28px rgba(13, 42, 74, 0.08);
  --shadow-strong: 0 24px 54px rgba(8, 30, 56, 0.24);
  --shadow-premium: 0 26px 56px rgba(7, 28, 54, 0.18);
  --border-soft: 1px solid rgba(13, 71, 161, 0.14);
  --content-max: 1220px;
  --section-inline-pad: clamp(1rem, 2.6vw, 2.1rem);
  --body-size: 1rem;
  --nav-size: 0.8rem;
  --nav-size-mobile: 0.875rem;
  --font-base: "Sora", "Noto Sans Devanagari", sans-serif;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base) !important;
  font-size: var(--body-size);
  color: var(--brand-ink);
  background:
          radial-gradient(circle at 12% -8%, #fafdff 0%, #eef6ff 38%, #e8f1fb 100%),
          linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}
.v-application {
  font-family: var(--font-base) !important;
  background: transparent !important;
}
.v-application p,
.v-application span:not([class*="mdi"]):not(.v-icon),
.v-application div:not([class*="mdi"]),
.v-application li,
.v-application td,
.v-application th,
.v-list-item-title,
.v-btn__content {
  font-family: var(--font-base) !important;
}
.responsive-section {
  padding-top: clamp(3rem, 7vw, 5rem) !important;
  padding-bottom: clamp(3rem, 7vw, 5rem) !important;
}
.hero-section {
  min-height: 49vw;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-content-wrap {
  width: min(var(--content-max), calc(100% - clamp(1rem, 4vw, 3rem)));
  margin-inline: auto;
  padding-inline: var(--section-inline-pad) !important;
}
.about-fluid { padding-inline: clamp(1rem, 4vw, 3rem) !important; }
.section-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  line-height: 1.15;
  font-size: clamp(1.7rem, 4vw, 3rem) !important;
  text-wrap: balance;
}
.section-title::after {
  content: "";
  display: block;
  width: clamp(76px, 10vw, 120px);
  height: 4px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
  box-shadow: 0 6px 14px rgba(0, 172, 193, 0.24);
}
.text-center .section-title::after,
.section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}
.section-lead {
  color: var(--brand-ink-soft);
  font-size: var(--body-size);
  line-height: 1.65;
  max-width: 68ch;
  margin: 30px auto 0;
  white-space: pre-line;
  text-align: center;
}
.app-bar {
  padding-inline: clamp(0.75rem, 3vw, 2.5rem) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: var(--border-soft) !important;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.app-bar-scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 14px 30px rgba(13, 42, 74, 0.12);
  border-bottom-color: rgba(13, 71, 161, 0.2) !important;
}
.app-bar .v-toolbar-title {
  flex: 0 0 auto;
  min-width: fit-content;
  margin-inline-end: 0.85rem;
}
.brand-title {
  display: flex;
  align-items: center;
  overflow: visible;
}
.brand-logo {
  width: clamp(108px, 16vw, 214px);
  height: auto;
  object-fit: contain;
  display: block;
}
.top-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  white-space: nowrap;
}
.desktop-nav-only { display: flex; }
.mobile-tablet-nav-only { display: none; }
.top-nav-links .v-btn {
  font-weight: 600;
  font-size: var(--nav-size);
  letter-spacing: 0;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-nav-links .v-btn .v-btn__content {
  text-transform: none;
  letter-spacing: 0;
  gap: 0.28rem;
  font-size: var(--nav-size);
  line-height: 1;
}
.top-nav-links.nav-uppercase .v-btn .v-btn__content {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.top-nav-links.nav-nepali .v-btn {
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
}
.top-nav-links.nav-nepali .v-btn .v-btn__content {
  font-size: calc(var(--nav-size) * 1.4);
  line-height: 1.1;
}
.top-nav-links .v-btn:not([color]):hover {
  background: rgba(13, 71, 161, 0.07) !important;
  color: var(--brand-blue) !important;
}
.nav-link-btn {
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.5rem;
  background: rgba(13, 71, 161, 0.07);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(13, 71, 161, 0.15);
  cursor: pointer;
  user-select: none;
}
.lang-toggle:hover {
  border-color: rgba(13, 71, 161, 0.3);
  background: rgba(13, 71, 161, 0.1);
}
.lang-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: 38px;
  background: var(--brand-blue);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.lang-toggle-slider.slide-ne {
  transform: translateX(38px);
}
.lang-toggle-opt {
  position: relative;
  z-index: 1;
  font-family: "Sora", "Noto Sans Devanagari", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  width: 38px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink-soft);
  transition: color 0.22s ease;
  letter-spacing: 0;
  line-height: 1;
}
.lang-toggle-opt.is-active {
  color: #fff;
}
.mobile-lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 1.5rem);
  background: rgba(13, 71, 161, 0.07);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(13, 71, 161, 0.15);
  cursor: pointer;
  user-select: none;
  margin: 0.3rem 0.75rem 0.1rem;
}
.mobile-lang-toggle .lang-toggle-opt {
  flex: 1;
  width: auto;
}
.mobile-lang-toggle .lang-toggle-slider {
  width: calc(50% - 3px);
}
.mobile-lang-toggle .lang-toggle-slider.slide-ne {
  transform: translateX(100%);
}
.mobile-nav-list {
  border: 1px solid rgba(13, 71, 161, 0.1);
}
.mobile-nav-item { font-weight: 600 !important; min-height: 44px !important; }
.mobile-nav-item .v-list-item-title {
  font-weight: 600;
  font-size: var(--nav-size-mobile) !important;
  line-height: 1.2 !important;
  letter-spacing: 0;
}
.hero-gradient {
  position: relative;
  background:
    url('photos/lmt_about_us_backgraound.png') center top / 100% auto no-repeat;
  background-attachment: scroll;
}
.hero-subtitle-section {
  background: #ffffff;
  padding: 0.85rem 0 2rem;
  font-weight: 400;
}
.hero-headline-section {
  background: #ffffff;
  padding: 1.5rem 0 0.5rem;
  text-align: center;
}
.hero-headline-section-title {
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0f2040;
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero-image-header {
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.hero-image-title {
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.6),
    2px 2px 0 rgba(0,0,0,0.45),
    3px 3px 0 rgba(0,0,0,0.3),
    4px 4px 0 rgba(0,0,0,0.2),
    5px 5px 8px rgba(0,0,0,0.4);
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-image-title {
    font-size: clamp(0.9rem, 2.7vw, 2.4rem);
  }
}
.hero-gradient::before {
  content: none;
}
.hero-gradient::after {
  content: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 1;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-split-row {
  min-height: 41vw;
}
.hero-split-col {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  min-height: 41vw;
}
.hero-heading-block {
  text-align: center;
  margin: 0 auto;
  padding-top: clamp(3rem, 10vh, 6rem);
}
.hero-headline-section .hero-split-col {
  min-height: auto;
  justify-content: center;
}
.hero-headline-section .hero-heading-block {
  padding-top: 0;
}
.hero-line1 {
  position: relative;
  display: block;
  margin: 0 auto 0.7rem;
  max-width: 100%;
  color: #000000;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: break-word;
  isolation: isolate;
  text-shadow: none;
  cursor: default;
}
.hero-line1.tp-english {
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-size: clamp(0.75rem, 1.6vw, 1.08rem) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-line1.tp-nepali {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(0.75rem, 1.6vw, 1.08rem) !important;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-line1::before {
  content: none;
}
.hero-line1::after {
  content: none;
}
.hero-heading-sep {
  width: 52px;
  height: 3px;
  margin: 0 auto 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 100%);
  opacity: 1;
}
.hero-line2 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #000000;
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.6vw, 1.08rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: none;
}
.hero-line3 {
  display: block;
  color: #000000;
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.6vw, 1.08rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: none;
  margin-top: 0.8rem;
}
.hero-subtitle {
  display: block;
  font-size: clamp(1.03rem, 2vw, 1.18rem) !important;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  line-height: 1.72;
  color: rgba(30, 50, 80, 0.88) !important;
  font-weight: 400;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
}
/* ── SplitText hero-subtitle ── */
.st-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
}
.hero-subtitle.split-animate .st-word {
  animation: stWordIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes stWordIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .st-word { opacity: 1 !important; transform: none !important; animation: none !important; }
}
.about-slider-wrapper {
  margin-top: 0.45rem;
  width: min(1160px, 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}
.about-slider {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f0f6ff, #e8f1fb);
  border: 1px solid rgba(13, 71, 161, 0.12);
  box-shadow: 0 16px 34px rgba(7, 24, 48, 0.10);
}
.about-slider .v-window-item,
.about-slider .v-carousel-item {
  height: 130%;
}
.about-slide-frame {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 1.8vw, 1.25rem);
  text-align: center;
  gap: 0.48rem;
}
.about-slide-badge {
  display: inline-block;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  padding: 0.28rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background: rgba(99, 102, 241, 0.08);
  color: #4338ca;
  font-size: clamp(0.78rem, 1.2vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-slide-text {
  margin: 0;
  text-align: center;
  color: #0d2a4a;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.28;
  text-shadow: none;
  max-width: 34ch;
  overflow-wrap: break-word;
}
.about-slide-divider {
  width: min(120px, 32%);
  height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #4338ca 0%, #818cf8 100%);
}
.about-slide-context {
  margin: 0.72rem 0 0;
  max-width: 58ch;
  text-align: center;
  color: #415f7d;
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}
/* ── Scroll Stack ── */
.scroll-stack-scroller {
  position: relative;
  width: 100%;
  height: 440px;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(99,102,241,0.22) transparent;
}
.scroll-stack-scroller::-webkit-scrollbar { width: 3px; }
.scroll-stack-scroller::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.22); border-radius: 99px; }
.scroll-stack-inner { padding: 80px 0 480px; }
.about-stack-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.10);
  box-shadow: 0 8px 32px rgba(67, 56, 202, 0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
  margin-bottom: 80px;
  will-change: transform, filter;
  transform-origin: top center;
  backface-visibility: hidden;
  box-sizing: border-box;
  overflow: hidden;
}
.about-stack-card .about-slide-frame {
  height: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1rem, 2.5vw, 1.6rem);
}
.scroll-stack-end { height: 1px; width: 100%; }
@media (max-width: 768px) {
  .scroll-stack-scroller { height: 380px; }
  .about-stack-card { margin-bottom: 60px; }
  .scroll-stack-inner { padding: 60px 0 380px; }
}
@media (max-width: 600px) {
  .scroll-stack-scroller { height: 340px; }
  .about-stack-card { border-radius: 14px; margin-bottom: 50px; }
  .scroll-stack-inner { padding: 50px 0 320px; }
}
/* ── /Scroll Stack ── */
.about-hiring-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 1rem;
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 71, 161, 0.18);
  border-left: 6px solid #2196f3;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 14px 30px rgba(6, 27, 52, 0.11);
}
.about-hiring-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 90% 8%, rgba(33, 150, 243, 0.08), transparent 32%),
          radial-gradient(circle at 8% 85%, rgba(0, 172, 193, 0.08), transparent 38%);
  pointer-events: none;
  z-index: -1;
}
.about-hiring-title {
  margin: 0 0 0.85rem 0;
  color: #000;
  font-size: clamp(1.08rem, 2.1vw, 1.44rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.about-hiring-title::after {
  content: "";
  display: block;
  margin-top: 0.58rem;
  width: min(170px, 52%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2196f3 0%, #00acc1 70%, rgba(0, 172, 193, 0) 100%);
}
.about-hiring-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.7rem;
}
.about-hiring-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  color: #000;
  line-height: 1.58;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  border-radius: 14px;
  padding: 0.72rem 0.78rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(13, 71, 161, 0.14);
  box-shadow: 0 6px 14px rgba(5, 22, 44, 0.08);
}
.about-hiring-point-index {
  flex-shrink: 0;
  width: 1.68rem;
  height: 1.68rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
  color: #0b2b4f;
  background: linear-gradient(145deg, #ffffff 0%, #d4edff 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(7, 27, 50, 0.2);
}
.about-hiring-point-text {
  display: inline-block;
  min-width: 0;
  color: #000;
  overflow-wrap: break-word;
}
.service-card,
.course-track-card,
.contact-card {
  border-radius: var(--radius-lg) !important;
  background: var(--surface-card) !important;
  box-shadow: 0 14px 30px rgba(8, 34, 64, 0.1) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid rgba(13, 71, 161, 0.16) !important;
}
.service-card {
  padding: clamp(1.25rem, 3.5vw, 2rem) !important;
  border-top: 5px solid var(--brand-cyan) !important;
  border-left: 1px solid rgba(13, 71, 161, 0.1) !important;
  height: 100%;
}
.service-card-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
.service-card-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.service-card-logo-row h3 {
  margin-bottom: 0 !important;
}
.service-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 172, 193, 0.18);
  background: linear-gradient(135deg, rgba(0, 172, 193, 0.08) 0%, rgba(13, 71, 161, 0.04) 100%);
  color: #0d5d76;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}
.service-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.78rem 0.82rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 71, 161, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #294763;
  line-height: 1.5;
  box-shadow: 0 8px 16px rgba(7, 28, 53, 0.06);
}
.service-offer-item .v-icon {
  margin-top: 0.1rem;
  color: #008ca2;
  flex-shrink: 0;
}
.service-card:hover,
.course-track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(10, 35, 67, 0.15) !important;
  border-color: rgba(13, 71, 161, 0.22) !important;
}
.service-card.service-table-static:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(8, 34, 64, 0.1) !important;
  border-color: rgba(13, 71, 161, 0.16) !important;
}
.enterprise-service-card {
  border-top: 5px solid var(--brand-blue) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}
.enterprise-service-header {
  margin-bottom: 1rem;
}
.enterprise-service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(13, 71, 161, 0.06);
  border: 1px solid rgba(13, 71, 161, 0.1);
  color: #0d47a1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.enterprise-service-title {
  margin: 0;
  color: #0b2f59;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem) !important;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.enterprise-service-desc {
  margin: 0.7rem 0 0;
  max-width: 60ch;
  color: #425d79 !important;
  font-size: var(--body-size);
  line-height: 1.68;
}
.service-solutions-card {
  overflow: hidden;
}
.service-solutions-intro {
  color: #2f475c;
  line-height: 1.62;
  margin-bottom: 1rem;
}
.service-solutions-table-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 71, 161, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  margin-top: 0.85rem;
}
.service-table-toolbar-title {
  position: static;
  transform: none;
  display: block;
  margin: 0;
  padding: 0;
  color: #0d2f66;
  font-size: 1.02rem !important;
  line-height: 1.3;
  text-align: center;
}
.service-search-panel {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.service-sector-data-panel {
  margin-top: 0.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(13, 71, 161, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  padding-bottom: 0.25rem;
}
.service-sector-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3552;
  padding: 1rem 16px 0.75rem;
}
.service-sector-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 16px 0.9rem;
  color: #4d6781;
  font-size: var(--body-size);
  line-height: 1.4;
  flex-wrap: wrap;
}
.service-table-search {
  width: 100%;
  max-width: 100%;
  padding: 0 16px 0.5rem;
}
.service-table-search .v-field {
  border-radius: 16px !important;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%) !important;
  box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.92),
          0 10px 24px rgba(13, 42, 74, 0.08) !important;
  border: 1px solid rgba(13, 71, 161, 0.18) !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.service-table-search .v-field:hover {
  border-color: rgba(13, 71, 161, 0.28) !important;
  box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.96),
          0 14px 28px rgba(13, 42, 74, 0.1) !important;
}
.service-table-search .v-field--focused {
  border-color: rgba(13, 71, 161, 0.48) !important;
  box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.98),
          0 0 0 4px rgba(13, 71, 161, 0.09),
          0 18px 34px rgba(13, 42, 74, 0.14) !important;
  transform: translateY(-1px);
}
.service-table-search .v-field__prepend-inner {
  color: #0d47a1 !important;
  opacity: 1 !important;
  padding-inline-end: 0.25rem;
}
.service-table-search .v-label {
  color: #4b6580 !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service-table-search input {
  color: #123252 !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service-table-search .v-field__clearable {
  color: #5f7994 !important;
  opacity: 0.92 !important;
}
.service-table-search .v-field__outline {
  --v-field-border-opacity: 0 !important;
}
.service-table-search .v-field__input {
  min-height: 58px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .service-table-search .v-field {
    border-radius: 14px !important;
  }
  .service-table-search .v-field__input {
    min-height: 54px;
  }
}
.service-solutions-table th {
  background: linear-gradient(180deg, #e8f3ff 0%, #d7ebff 100%);
  color: #0d2f66 !important;
  font-weight: 800 !important;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center !important;
}
.service-solutions-table td {
  color: #1f3953;
  vertical-align: top;
  line-height: 1.55;
  padding-top: 0.95rem !important;
  padding-bottom: 0.95rem !important;
}
.service-solutions-table {
  width: 100%;
  border-collapse: collapse;
}
.service-solutions-table tbody tr:nth-child(even) td {
  background: rgba(236, 245, 255, 0.58);
}
.service-solutions-industry {
  font-weight: 700;
  color: #0d3a6e;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.service-sector-row-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.service-sector-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(13, 71, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  color: #0d47a1;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.service-expand-detail {
  padding: 1rem 1.1rem;
  color: #1f3953;
  line-height: 1.65;
  background: linear-gradient(180deg, rgba(243, 249, 255, 0.95) 0%, rgba(234, 244, 255, 0.92) 100%);
}
.service-inline-detail {
  margin-top: 0.45rem;
  color: #42617e;
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.6;
}
.service-sector-data-table td {
  text-align: left !important;
}
.service-sector-table-wrap {
  width: 100%;
  padding: 0 16px 16px;
}
.service-sector-row {
  cursor: pointer;
}
.service-sector-main-cell {
  width: 100%;
  padding-left: 1rem !important;
  padding-right: 0.75rem !important;
}
.service-sector-row:hover td {
  background: rgba(228, 241, 255, 0.76);
}
.service-sector-data-table .v-data-table__tr {
  cursor: pointer;
}
.service-sector-detail-cell {
  padding: 0 !important;
  background: linear-gradient(180deg, rgba(243, 249, 255, 0.96) 0%, rgba(235, 244, 255, 0.94) 100%) !important;
}
.service-sector-detail-panel {
  padding: 0.95rem 1rem 1rem;
  color: #35506c;
  line-height: 1.7;
  font-size: var(--body-size);
}
.service-empty-state {
  margin: 0 16px 16px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px dashed rgba(13, 71, 161, 0.22);
  background: linear-gradient(180deg, rgba(241, 248, 255, 0.9) 0%, rgba(235, 244, 255, 0.92) 100%);
  color: #35506c;
  text-align: center;
}
.service-empty-state strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #0c335f;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .service-sector-detail-panel {
    padding: 0.88rem 0.9rem 0.95rem;
    font-size: var(--body-size);
    line-height: 1.72;
  }
}
.course-track-card {
  padding: clamp(1.2rem, 3vw, 1.8rem) !important;
  border-top: 5px solid var(--brand-blue) !important;
  height: 100%;
}
.course-track-title,
.language-title,
.language-group-title { color: var(--brand-blue); }
.course-track-outcome { color: #2f475c; margin-bottom: 0.8rem; line-height: 1.55; }
.course-module {
  font-size: var(--body-size);
  color: #22384e;
  line-height: 1.38;
  white-space: normal;
}
.course-module-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  flex-wrap: nowrap;
}
.course-module-logos,
.language-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.language-logos { margin-right: 0.65rem; }
.course-module-logo { width: 21px; height: 21px; object-fit: contain; display: block; }
.course-module-line > span:last-child {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.language-logo { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.language-title { display: flex; align-items: center; min-width: 0; width: 100%; font-weight: 700; }
.language-name { overflow-wrap: break-word; line-height: 1.3; }
.required-mark {
  margin-left: auto;
  padding: 0.18rem 0.56rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(198, 40, 40, 0.26);
}
.language-group-title {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  margin: 0 0 0.65rem 0;
}
.recruit-group-card {
  height: 100%;
  padding: 1rem 1rem 0.9rem;
  border-radius: 14px;
  border: var(--border-soft);
  border-top: 4px solid rgba(13, 71, 161, 0.38);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 18px rgba(12, 39, 71, 0.08);
}
.group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.group-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.skill-item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 12px;
  border: var(--border-soft);
  box-shadow: 0 8px 18px rgba(12, 39, 71, 0.08);
  padding: 0.8rem 0.92rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.skill-item:hover {
  transform: translateX(4px);
  border-color: rgba(13, 71, 161, 0.24);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.contact-shell {
  padding: clamp(1.4rem, 4vw, 2.8rem);
  border-radius: 28px;
  border: 1px solid rgba(13, 71, 161, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(10, 35, 67, 0.1);
  margin-inline: auto;
}
.contact-header {
  margin-bottom: clamp(1.25rem, 2.8vw, 1.9rem);
  text-align: center;
}
.contact-header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 0;
  align-items: stretch;
}
.contact-side-stack {
  display: grid;
  gap: 0;
  padding-left: 1.35rem;
}
.contact-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.contact-map-panel {
  display: grid;
  gap: 1rem;
  padding-right: 1.35rem;
  border-right: 1px solid rgba(13, 71, 161, 0.12);
}
.contact-detail-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 0;
  padding: 0.15rem 0;
}
.contact-detail-panel + .contact-detail-panel {
  margin-top: 1.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(13, 71, 161, 0.12);
}
.contact-panel-intro {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.contact-panel-icon {
  flex-shrink: 0;
  box-shadow: none;
}
.contact-panel-copy {
  min-width: 0;
}
.contact-map-frame {
  overflow: hidden;
  border-radius: 18px;
}
.contact-method-list {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.15rem;
}
.contact-method-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.65rem 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  transition: color 0.2s ease;
}
.contact-method-link:hover {
  color: var(--brand-blue);
}
.contact-item-label {
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  margin-bottom: 0.18rem;
}
.contact-item-primary { color: #0b2746; margin-bottom: 0.12rem; line-height: 1.28; }
.contact-item-secondary { color: #365066; line-height: 1.45; }
.contact-email-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.contact-email-address {
  display: inline-block;
  width: 100%;
  padding: 0.65rem 0;
  margin-bottom: 0.1rem;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.contact-email-hint-row {
  display: block;
  margin-top: 0.1rem;
}
.contact-email-hint-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 71, 161, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  color: #1e4f86;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.contact-email-hint-link:hover {
  background: linear-gradient(180deg, #f8fbff 0%, #e6f1ff 100%);
  border-color: rgba(13, 71, 161, 0.32);
}
.contact-method-link:focus-visible,
.contact-email-link:focus-visible {
  outline: 2px solid #1976d2;
  outline-offset: 2px;
}
.contact-single-line { white-space: nowrap; overflow-wrap: anywhere; }
.brand-footer {
  position: relative !important;
  overflow: hidden;
  background: linear-gradient(155deg, #eef2ff 0%, #f4f7ff 45%, #ffffff 100%) !important;
  border-top: 1px solid rgba(99, 102, 241, 0.10);
  color: #1e1b4b !important;
}
.brand-footer .v-container {
  position: relative;
  z-index: 2;
  isolation: isolate;
}
#services,
#education,
#recruit,
#contact {
  position: relative;
  border-top: 1px solid rgba(13, 71, 161, 0.08);
  width: auto;
  margin-inline: auto;
  padding-inline: var(--section-inline-pad) !important;
}
#services,
#education,
#recruit,
#contact {
  color: #0f2f4f;
}
#services .section-lead,
#education .section-lead,
#recruit .section-lead,
#contact .section-lead {
  color: #234567;
}
#services p.section-lead,
#education p.section-lead,
#recruit p.section-lead {
  max-width: 68ch;
  width: 100%;
}
#services .text-grey-darken-1,
#education .text-grey-darken-1,
#recruit .text-grey-darken-1,
#contact .text-grey-darken-1 {
  color: #2d4761 !important;
}
#services .text-subtitle-1,
#education .text-subtitle-1,
#recruit .text-subtitle-1,
#contact .text-subtitle-1 {
  color: #35516b !important;
}

.services-section-wrap {
  width: min(var(--content-max), calc(100% - clamp(1rem, 4vw, 3rem)));
  margin-inline: auto;
  padding-inline: var(--section-inline-pad) !important;
}
.services-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.education-section-wrap {
  width: auto;
  max-width: 100%;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}
.education-section-wrap > .mb-12 {
  padding-inline: 5px;
  margin-inline: 5px;
}
.education-section-wrap > .about-hiring-card {
  padding-inline: 5px;
  margin-inline: 5px;
}
.education-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 5px;
  margin-right: 5px;
  padding-inline: 0;
}
@media (max-width: 900px) {
  .education-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .education-cards-grid { grid-template-columns: 1fr; }
}
.recruit-section-wrap {
  width: min(var(--content-max), calc(100% - clamp(1rem, 4vw, 3rem)));
  margin-inline: auto;
  padding-inline: var(--section-inline-pad) !important;
}
.recruit-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  margin-top: 30px;
}
.contact-section-wrap {
  width: calc(100% - clamp(1rem, 4vw, 3rem));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--section-inline-pad) !important;
}
.scroll-top-btn {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2.2vw, 24px);
  z-index: 30;
  border-radius: 16px !important;
  box-shadow: 0 12px 24px rgba(13, 71, 161, 0.28);
}
.scroll-progress {
  position: fixed !important;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 24;
  pointer-events: none;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.5vw, 2.3rem);
  color: #1e1b4b;
}
.footer-brand-logo {
  width: min(300px, 60vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(67, 56, 202, 0.15));
}
/* ── Footer Socials ── */
.footer-socials-unique {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 0;
}
.footer-logo-item {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.22s ease;
}
.footer-logo-item:hover {
  color: #000000;
  transform: scale(1.22);
}
.footer-social-icon-loop {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.12);
  transition: filter 0.2s ease, transform 0.22s ease;
}
.footer-logo-item:hover .footer-social-icon-loop {
  filter: grayscale(100%) brightness(0);
}
.nav-link-btn:focus-visible,
.lang-switch-btn:focus-visible,
.footer-logo-item:focus-visible {
  outline: 2px solid rgba(13, 71, 161, 0.45);
  outline-offset: 2px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-hiring-card {
  animation: fadeUp 0.6s ease both;
}
.about-hiring-card { animation-delay: 0.52s; }
@media (max-width: 960px) {
  .top-nav-links { gap: 0.05rem; }
  .contact-single-line { white-space: normal; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-shell { padding: 1.1rem; }
  .contact-panel { padding: 0; }
  .contact-map-panel {
    padding-right: 0;
    padding-bottom: 1.15rem;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 71, 161, 0.12);
  }
  .contact-side-stack {
    padding-left: 0;
    padding-top: 1.15rem;
  }
  .hero-content-wrap { width: calc(100% - 1rem); }
  #services,
  #education,
  #recruit,
  #contact {
    width: calc(100% - 1rem);
    padding-inline: clamp(0.72rem, 3.4vw, 1rem) !important;
  }
  .skill-item:hover,
  .service-card:hover,
  .course-track-card:hover,
  .footer-logo-item:hover { transform: none; }
}
@media (max-width: 1024px) {
  .desktop-nav-only { display: none !important; }
  .mobile-tablet-nav-only { display: block !important; }
  .hero-gradient {
    background:
      url('photos/lmt_about_us_backgraound.png') center top / 100% auto no-repeat;
    background-attachment: scroll;
  }
  .hero-section { min-height: 49vw; }
  .hero-split-row,
  .hero-split-col { min-height: 41vw; }
  .about-slider-wrapper {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
  }
  .about-slide-frame { padding: 0.55rem; }
  .hero-subtitle {
    max-width: 100%;
    font-size: clamp(1rem, 2.15vw, 1.08rem) !important;
    line-height: 1.68;
  }
  .hero-subtitle .st-word { font-size: clamp(1.05rem, 3.05vw, 1.24rem); }
}
@media (max-width: 1366px) and (min-width: 1025px) {
  .about-fluid { padding-inline: clamp(0.9rem, 2.2vw, 2rem) !important; }
}
@media (max-width: 768px) {
  .hero-gradient {
    background:
      url('photos/lmt_about_us_backgraound.png') center top / 100% auto no-repeat;
    background-attachment: scroll;
  }
  .hero-section { min-height: 49vw; }
  .hero-split-row,
  .hero-split-col { min-height: 41vw; }
  .hero-line1::before,
  .hero-line1::after {
    content: none;
  }
  .hero-line2 {
    font-size: clamp(0.78rem, 3.2vw, 0.96rem);
  }
  .hero-subtitle {
    font-size: 0.96rem !important;
    line-height: 1.62;
  }
}
@media (max-width: 480px) {
  .hero-line2 {
    font-size: 0.78rem;
  }
}
@media (max-width: 600px) {
  .about-fluid { padding-inline: clamp(0.55rem, 2.2vw, 0.9rem) !important; }

  .about-slider-wrapper { margin-top: 0.2rem; }
  .about-slider { border-radius: 14px; }
  .about-slide-frame { padding: 0.4rem; }
  .about-slide-text {
    font-size: clamp(1.18rem, 5.8vw, 1.7rem);
    line-height: 1.32;
    max-width: 22ch;
    text-align: center;
  }
  .about-slide-divider { margin: 0.62rem auto 0; }
  .about-slide-context {
    font-size: var(--body-size);
    line-height: 1.5;
    text-align: center;
  }
  .about-hiring-list { grid-template-columns: 1fr; }
  .about-hiring-list li {
    gap: 0.62rem;
    padding: 0.68rem 0.72rem;
  }
  .about-hiring-point-index {
    width: 1.58rem;
    height: 1.58rem;
  }
  .course-module-logo { width: 18px; height: 18px; }
  .course-module-line { gap: 0.45rem; }
  .recruit-group-card { padding: 0.8rem 0.72rem 0.65rem; }
  .language-group-title { margin-bottom: 0.55rem; }
  .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.58;
  }
  .hero-subtitle .st-word { font-size: clamp(0.98rem, 4.25vw, 1.12rem); }
  .contact-single-line.postal-line,
  .contact-single-line.email-line { font-size: 1rem !important; }
  .contact-single-line.phone-line {
    font-size: 1.2rem !important;
    letter-spacing: 0 !important;
    line-height: 1.25;
  }
  .contact-panel-intro { gap: 0.75rem; }
  .contact-method-link,
  .contact-email-address { padding: 0.72rem 0; }
  .contact-map-frame iframe { height: 320px; }
  .scroll-progress { top: 56px; }
  .footer-logo-item { font-size: 15px; }
  .footer-social-icon-loop { width: 15px; height: 15px; }
  .hero-gradient {
    background:
      url('photos/lmt_about_us_backgraound.png') center top / 100% auto no-repeat;
    background-attachment: scroll;
  }
  .hero-section { min-height: 49vw; }
  .hero-split-row,
  .hero-split-col { min-height: 41vw; }
}
@media (min-width: 1280px) {
  .about-fluid { padding-inline: clamp(2rem, 6vw, 7rem) !important; }
  .about-slider-wrapper { padding-inline: clamp(1rem, 3vw, 2.4rem); }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   HERO HEADLINE SLIDESHOW
   ============================================================ */
.hero-slide-text {
  font-family: 'Roboto Flex', 'Sora', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
}
.hero-slide-text.tp-nepali {
  font-family: 'Noto Sans Devanagari', sans-serif;
  letter-spacing: 0;
  white-space: normal;
}

/* Slide transition */
.hero-slide-enter-active,
.hero-slide-leave-active {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-slide-enter-from { opacity: 0; transform: translateY(14px); }
.hero-slide-leave-to  { opacity: 0; transform: translateY(-14px); }

/* Dots */
.hero-slide-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.55rem;
}
.hsd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.hsd-dot.active {
  background: #000000;
  transform: scale(1.45);
}
.hero-slide-progress-bar {
  margin: 0.5rem auto 0;
  width: 120px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.hero-slide-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #1a3a6b);
  border-radius: 999px;
  transition: width 0.05s linear;
}

a { text-decoration: none; color: inherit; }
[v-cloak] { display: none; }
