 
/* ── Scoped reset for slider section only ── */
#ms-hero-slider *,
#ms-hero-slider *::before,
#ms-hero-slider *::after {
  box-sizing: border-box;
}
/* Zero margins on text elements only — NOT buttons/links (preserves padding) */
#ms-hero-slider h1,
#ms-hero-slider h2,
#ms-hero-slider h3,
#ms-hero-slider p {
  margin: 0;
  padding: 0;
}

/* ── Section wrapper ── */
#ms-hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 640px;
  background: #020d1f;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}

/* ── Particle canvas ── */
#ms-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Slides container ── */
.ms-slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* ── Individual slide ── */
.ms-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.85s cubic-bezier(0.77,0,0.175,1);
}
.ms-slide.ms-active {
  opacity: 1;
  pointer-events: all;
}

/* ── Radial glow behind text ── */
.ms-slide-glow {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(26,127,212,0.16) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Slide inner content ── */
.ms-slide-inner {
  text-align: center;
  max-width: 920px;
  width: 100%;
  padding: 0 3rem;
  transform: translateY(32px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.77,0,0.175,1),
              opacity 0.85s cubic-bezier(0.77,0,0.175,1);
}
.ms-slide.ms-active .ms-slide-inner {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.18s;
}

/* ── Eyebrow / badge ── */
.ms-eyebrow {
  display: inline-block;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4eb3f8;
  border: 1px solid rgba(78,179,248,0.40);
  border-radius: 100px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

/* ── Main headline ── */
.ms-headline {
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: clamp(4.75rem, 7.8vw, 6.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
	
.ms-headline .ms-hl {
  background: linear-gradient(90deg, #4eb3f8, #5bc4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Accent divider bar ── */
.ms-divider {
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1a7fd4, #5bc4ff);
  margin: 1.2rem auto 1.4rem !important;
  display: block !important;
}

/* ── Sub-headline (below main) ── */
.ms-subhead {
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: clamp(3rem, 3.25vw, 2.50rem);
  font-weight: 700;
  color: #1a7fd4;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

/* ── Body paragraph — ms-body AND ms-body1 both work ── */
.ms-body,
.ms-body1 {
  font-family: 'Roboto', sans-serif !important;
  font-size: clamp(1.75rem, 1.55vw, 1.75rem) !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
  color: #ffffff !important;
  max-width: 740px;
  margin: 0 auto 2rem !important;
  display: block !important;
  text-align: center !important;
  padding: 0 0.5rem;
}

/* ── Button group ── */
.ms-btn-group {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 20px;
}

.ms-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem;
  padding: 1rem 2.4rem !important;
  border-radius: 7px !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 1.2 !important;
  min-height: 48px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.ms-btn:active { transform: scale(0.97) !important; }

.ms-btn-blue {
  background: #1a7fd4;
  color: #fff !important;
  box-shadow: 0 0 26px rgba(26,127,212,0.4);
  font-size: 18px;
}
.ms-btn-blue:hover {
  background: #4eb3f8;
  color: #fff !important;
  box-shadow: 0 0 38px rgba(78,179,248,0.55);
  transform: translateY(-2px);
}

.ms-btn-white {
  background: #ffffff;
  color: #071733 !important;
  box-shadow: 0 4px 18px rgba(255,255,255,0.14);
}
.ms-btn-white:hover {
  background: #e4f2ff;
  color: #071733 !important;
  box-shadow: 0 6px 26px rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ── Extra specificity to beat Bootstrap link/button resets ── */
#ms-hero-slider .ms-btn {
  padding: 1rem 2.4rem !important;
  min-height: 48px !important;
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  border: none !important;
  border-radius: 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}
#ms-hero-slider .ms-btn-blue {
  background: #1a7fd4 !important;
  color: #ffffff !important; 
}
#ms-hero-slider .ms-btn-white {
  background: #ffffff !important;
  color: #071733 !important;
}
#ms-hero-slider .ms-body,
#ms-hero-slider .ms-body1,
#ms-hero-slider p.ms-body,
#ms-hero-slider p.ms-body1 {
  color: #ffffff !important;
  font-size: clamp(2.25rem, 2.50vw, 1.95rem) !important;
  font-weight: 300 !important;
  text-align: center !important;
  margin: 0 auto 2rem !important;
  line-height: 1.5 !important;
}

/* ── Arrow nav buttons ── */
.ms-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
  outline: none;
}
.ms-arrow:hover {
  background: #1a7fd4;
  transform: translateY(-50%) scale(1.08);
}
.ms-arrow-prev { left: 1.5rem; }
.ms-arrow-next { right: 1.5rem; }

/* ── Dot indicators ── */
.ms-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 10;
}
.ms-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  border: none;
  padding: 0;
  outline: none;
}
.ms-dot.ms-dot-active {
  width: 28px;
  border-radius: 5px;
  background: #4eb3f8;
}

/* ── Progress bar ── */
.ms-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a7fd4, #5bc4ff);
  transition: width 0.85s cubic-bezier(0.77,0,0.175,1);
  z-index: 10;
}

/* ── Slide counter (top right) ── */
.ms-counter {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.12em;
  z-index: 10;
}
.ms-counter strong {
  color: #4eb3f8;
  font-weight: 700;
}

/* ── Mobile tweaks ── */
@media (max-width: 767px) {
  #ms-hero-slider { height: 88vh; min-height: 580px; }
  .ms-arrow { display: none; }
  .ms-headline { font-size: clamp(2.8rem, 9vw, 4rem); }
  .ms-slide-inner { padding: 0 1.5rem; }
  .ms-body, .ms-body1 { font-size: 1rem; }
}
 