/* ============================================================
   SEN-TECH Demo Landing Page — Stylesheet
   Color Palette:
     Primary Dark : #2b6777
     Light Blue   : #c8d8e4
     White        : #ffffff
     Off-White    : #f2f2f2
     Accent Green : #52ab98
   ============================================================ */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f2f2f2;
  color: #2b6777;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  width: 100%;
  min-height: 100vh;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

/* ---------- Typography Helpers ---------- */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   HERO OVERLAYS (replaces navbar)
   ============================================================ */

/* --- Brand name top-left --- */
.hero-logo {
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 999;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: clamp(1px, 0.4vw, 4px);
  user-select: none;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  /* Fade in on load */
  animation: heroFadeIn 1s ease 0.3s both;
}

.hero-sen  { color: #ffffff; }
.hero-dash { color: #52ab98; }
.hero-tech { color: #c8d8e4; }

/* --- Floating nav buttons top-right --- */
.hero-nav {
  position: absolute;
  top: 25px;
  right: 40px;
  z-index: 999;
  display: flex;
  gap: 14px;
  align-items: center;
  animation: heroFadeIn 1s ease 0.5s both;
}

.hero-btn {
  background: rgba(82, 171, 152, 0.92);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  display: inline-block;
}

.hero-btn:hover {
  background: #3d8f7e;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hero-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hero elements fade-in on load */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVIGATION BAR (kept for reference, no longer rendered)
   ============================================================ */
.navbar {
  display: none;
}

/* Scrolled state — slightly more opaque */
.navbar.scrolled {
  background: rgba(43, 103, 119, 1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Brand Logo --- */
.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: default;
  user-select: none;
}

.logo-sen  { color: #ffffff; }
.logo-dash { color: #52ab98; }
.logo-tech { color: #c8d8e4; }

/* --- Desktop Nav Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #c8d8e4;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  border-bottom-color: #52ab98;
}

/* --- Contact Us Button --- */
.btn-contact {
  background: #52ab98;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(82, 171, 152, 0.35);
}

.btn-contact:hover {
  background: #3d8f7e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(82, 171, 152, 0.45);
}

.btn-contact:active {
  transform: translateY(0);
}

/* --- Hamburger (Mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state — X icon */
.hamburger.open span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* --- Mobile Drawer --- */
.drawer {
  max-height: 0;
  overflow: hidden;
  background: #2b6777;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.drawer.open {
  max-height: 300px;
  border-top: 1px solid rgba(200, 216, 228, 0.2);
}

.drawer-links {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-link {
  color: #c8d8e4;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,216,228,0.15);
  transition: color 0.2s;
}

.drawer-link:hover {
  color: #ffffff;
}

.drawer-contact {
  width: fit-content;
  margin-top: 4px;
}

/* ============================================================
   FULL SCREEN IMAGE SLIDER
   ============================================================ */
.slider-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* Prevent any horizontal overflow on mobile */
  max-width: 100%;
}

/* --- Slides Wrapper --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- Individual Slide --- */
.slide {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: opacity, transform;
  transform-origin: center;
}

/* Active slide — fade in with cinematic Ken Burns zoom */
.slide.active {
  opacity: 1;
  z-index: 2;
  animation: kenBurns 9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1.09); }
  100% { transform: scale(1.00); }
}

/* --- Cinematic gradient overlay --- */
/* Bottom-heavy gradient for text readability, slight top vignette */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.05) 35%,
      rgba(0,0,0,0.05) 55%,
      rgba(0,0,0,0.55) 100%
    );
  z-index: 1;
}

/* --- Slider Text Content (above overlay) --- */
.slider-content {
  position: absolute;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(16px, 5vw, 80px);
}

/* Staggered entry animations for slider content children */
.slider-tagline {
  animation: scTaglineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.slider-title {
  animation: scTitleIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}
.slider-sub {
  animation: scSubIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes scTaglineIn {
  from { opacity: 0; transform: translateY(20px); letter-spacing: 8px; }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scTitleIn {
  from { opacity: 0; transform: translateY(36px) scale(0.96); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes scSubIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 0.92; transform: translateY(0); }
}

.slider-tagline {
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: clamp(3px, 0.6vw, 6px);
  text-transform: uppercase;
  color: #52ab98;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.slider-title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: clamp(3px, 1vw, 8px);
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.65);
  margin-bottom: 18px;
  line-height: 1.1;
}

.slider-sub {
  font-size: clamp(0.82rem, 1.8vw, 1.1rem);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: clamp(1px, 0.3vw, 2px);
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  max-width: 600px;
}

/* --- Arrow Buttons --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
  outline: none;
}

.slider-arrow svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-arrow:hover {
  background: rgba(82, 171, 152, 0.82);
  border-color: #52ab98;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 28px rgba(0,0,0,0.38), 0 0 0 1px rgba(82,171,152,0.5);
}

.slider-arrow:hover svg {
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.arrow-left  { left: 24px; }
.arrow-right { right: 24px; }

/* --- Dots Indicator --- */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.42);
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.4s ease,
              box-shadow 0.3s ease;
  border: 1.5px solid rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.dot:hover:not(.active) {
  background: rgba(255,255,255,0.7);
  transform: scale(1.15);
}

.dot.active {
  width: 28px;
  border-radius: 5px;
  background: #52ab98;
  border-color: #52ab98;
  box-shadow: 0 0 12px rgba(82,171,152,0.65);
}

/* --- Slider Progress Bar --- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 999;
  background: rgba(255,255,255,0.1);
}

.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #52ab98, #c8d8e4);
  will-change: width;
  transform-origin: left;
}

.slider-progress-fill.running {
  animation: progressFill var(--pd, 4s) linear forwards;
}

@keyframes progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* --- Scroll Hint --- HIDDEN */
.scroll-hint {
  display: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   COMING SOON SECTION
   ============================================================ */
.coming-soon-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, #1a3d47 0%, #2b6777 40%, #3a8a7a 70%, #1e5266 100%);
  background-size: 300% 300%;
  animation: bgShift 10s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.coming-soon-inner {
  text-align: center;
  max-width: 820px;
  width: 100%;
}

/* --- Wrapper: visible by default, children animate in --- */
.coming-soon-text-wrap {
  opacity: 1;
  transform: none;
}

/* --- Each child starts hidden --- */
.coming-label,
.coming-heading,
.coming-divider,
.coming-description,
.coming-brand {
  opacity: 0;
}

/* --- Animate each child when wrapper gets .visible --- */
.coming-soon-text-wrap.visible .coming-label {
  animation: csLabelIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.coming-soon-text-wrap.visible .coming-heading {
  animation: csHeadingIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.coming-soon-text-wrap.visible .coming-divider {
  animation: csDividerIn 0.8s ease 1s forwards;
}
.coming-soon-text-wrap.visible .coming-description {
  animation: csDescIn 1s ease 1.35s forwards;
}
.coming-soon-text-wrap.visible .coming-brand {
  animation: csBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards,
             csBrandPulse 3s ease-in-out 2.8s infinite;
}

/* --- Keyframes --- */
@keyframes csLabelIn {
  from {
    opacity: 0;
    transform: translateY(-28px);
    letter-spacing: 12px;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 5px;
  }
}

@keyframes csHeadingIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes csDividerIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes csDescIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes csBrandIn {
  from {
    opacity: 0;
    transform: scale(0.65);
    letter-spacing: 10px;
  }
  to {
    opacity: 1;
    transform: scale(1);
    letter-spacing: 4px;
  }
}

@keyframes csBrandPulse {
  0%, 100% {
    box-shadow: 0 0 0px rgba(82, 171, 152, 0);
    border-color: #52ab98;
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(82, 171, 152, 0.55);
    border-color: #c8d8e4;
  }
}

.coming-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #52ab98;
  margin-bottom: 18px;
}

.coming-heading {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 6px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.coming-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #52ab98, #c8d8e4);
  border-radius: 2px;
  margin: 0 auto 28px;
  transform-origin: center;
}

.coming-description {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #c8d8e4;
  line-height: 1.8;
  opacity: 0;
  margin-bottom: 36px;
}

.coming-brand {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #52ab98;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  background: rgba(82, 171, 152, 0.12);
  backdrop-filter: blur(4px);
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */

/* --- Dark overlay behind modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 48, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Modal Box --- */
.modal {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
  transform: translateY(36px) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* --- Close Button --- */
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #2b6777;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}

.modal-close:hover {
  color: #52ab98;
  transform: rotate(90deg);
}

/* --- Modal Header --- */
.modal-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #c8d8e4;
}

.modal-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* Override logo colors for white modal background */
.modal-logo .logo-sen  { color: #2b6777; }
.modal-logo .logo-dash { color: #52ab98; }
.modal-logo .logo-tech { color: #52ab98; }

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b6777;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: #52ab98;
  letter-spacing: 1px;
}

/* --- Section Titles --- */
.modal-section {
  margin-bottom: 24px;
}

.modal-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2b6777;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* --- Phone Buttons --- */
.phone-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-phone {
  flex: 1 1 auto;
  min-width: 160px;
  display: block;
  text-align: center;
  background: #2b6777;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(43,103,119,0.25);
}

.btn-phone:hover {
  background: #52ab98;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(82, 171, 152, 0.4);
}

/* --- Email Links --- */
.email-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 6px;
  background: #f2f2f2;
  color: #2b6777;
  transition: background 0.2s, transform 0.15s;
  border-left: 3px solid #c8d8e4;
}

.email-link:hover {
  background: #c8d8e4;
  transform: translateX(4px);
  border-left-color: #52ab98;
}

.email-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #52ab98;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 68px;
}

.email-address {
  font-size: 0.88rem;
  color: #2b6777;
  word-break: break-all;
}

/* --- Modal Footer --- */
.modal-footer {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid #c8d8e4;
  font-size: 0.78rem;
  color: #2b6777;
  opacity: 0.55;
  letter-spacing: 0.5px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #2b6777;
  color: #c8d8e4;
  text-align: center;
  padding: 22px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero logo — clamp handles it but add safe fallback */
  .hero-logo {
    top: 16px;
    left: 18px;
  }

  /* Hero nav buttons — tighter spacing */
  .hero-nav {
    top: 16px;
    right: 16px;
    gap: 8px;
  }

  .hero-btn {
    padding: 8px 16px;
  }

  /* Slider arrows slightly smaller */
  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .arrow-left  { left: 12px; }
  .arrow-right { right: 12px; }

  /* Modal full-width on small screens */
  .modal {
    padding: 28px 20px 22px;
  }

  .phone-buttons {
    flex-direction: column;
  }

  .btn-phone {
    min-width: unset;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* Stack hero nav vertically if very narrow */
  .hero-nav {
    top: 14px;
    right: 12px;
    gap: 6px;
  }

  .hero-btn {
    padding: 7px 12px;
  }

  /* Arrow buttons — compact */
  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .arrow-left  { left: 8px; }
  .arrow-right { right: 8px; }

  /* Dots slightly smaller */
  .dot {
    width: 7px;
    height: 7px;
  }

  .coming-heading {
    letter-spacing: 3px;
  }

  .email-label {
    display: none;
  }
}

/* ============================================================
   ACCESSIBILITY — Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: opacity 0.4s ease;
    will-change: auto;
  }
  .slide.active {
    animation: none;
    transform: scale(1);
  }
  .hero-logo,
  .hero-nav {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .slider-tagline,
  .slider-title,
  .slider-sub {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .coming-soon-section {
    animation: none;
    background-position: 50% 50%;
  }
  .modal {
    transition: opacity 0.2s ease;
  }
}

/* ============================================================
   SCROLLBAR STYLING  (webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #c8d8e4;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #52ab98;
}
